1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| <!-- 按钮组件 -->
| <template>
| <div
| class="size-8.5 inline-flex flex-cc c-p text-g-600 dark:text-g-800 text-xl rounded tad-300 hover:bg-hover-color"
| :class="{ 'rounded-full': circle }"
| >
| <ArtSvgIcon :icon="icon"></ArtSvgIcon>
| <slot></slot>
| </div>
| </template>
|
| <script setup>
| defineOptions({ name: 'ArtIconButton' })
| defineProps({
| icon: { required: true },
| circle: { required: false }
| })
| </script>
|
|