Icon.vue 176 B

12345678910
  1. <template>
  2. <Icon v-bind="props" />
  3. </template>
  4. <script setup lang="ts">
  5. import { Icon, type IconProps } from '@iconify/vue'
  6. const props = defineProps<IconProps>()
  7. </script>