BasicIcon.vue 212 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 <script setup lang="ts"> import { Icon } from '@iconify/vue' defineProps<{ icon: string size?: number }>() </script> <template> <Icon :icon="icon" class="outline-transparent cursor-pointer" /> </template>