Arrow.vue 426 B

1234567891011121314151617181920
  1. <template>
  2. <svg viewBox="0 0 20 20" fill="none" aria-hidden="true" class="mt-0.5 h-5 w-5">
  3. <path
  4. stroke="currentColor"
  5. strokeLinecap="round"
  6. strokeLinejoin="round"
  7. d="m11.5 6.5 3 3.5m0 0-3 3.5m3-3.5h-9"/>
  8. </svg>
  9. </template>
  10. <script setup>
  11. const props = defineProps({
  12. variant: {
  13. default: ''
  14. },
  15. arrow: {
  16. default: ''
  17. }
  18. });
  19. </script>