21 lines
293 B
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>
|