mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-06 03:57:54 +08:00
18 lines
356 B
Vue
18 lines
356 B
Vue
<template>
|
|
<n-icon :size="props.size || 20" :depth="props.depth" :color="props.color">
|
|
<Icon :icon="props.icon" />
|
|
</n-icon>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { Icon } from '@iconify/vue';
|
|
const props = defineProps<{
|
|
icon: string;
|
|
color?: string;
|
|
size?: number;
|
|
depth?: 1 | 2 | 3 | 4 | 5;
|
|
}>();
|
|
</script>
|
|
|
|
<style scoped></style>
|