index/components/ui/XIcon.vue

21 lines
293 B
Vue

<script setup lang="ts">
const props = defineProps({
name: {
type: String,
required: true,
},
size: {
type: String,
default: 'md',
},
color: {
type: String,
default: 'currentColor',
},
})
</script>
<template></template>
<style scoped lang="scss"></style>