<script setup> const props = defineProps({ size: { type: [Number, String], default: 14, }, }) </script> <template> <svg :height="props.size" :width="props.size" fill="none" viewBox="0 0 48 48"> <path d="M8 24L40 24" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="4" /> </svg> </template> <style lang="scss" scoped></style>