mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-06 03:57:54 +08:00
20 lines
345 B
Vue
20 lines
345 B
Vue
<template>
|
|
<Icon :icon="props.icon" class="inline-block" :width="props.size" />
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { Icon } from '@iconify/vue';
|
|
const props = defineProps({
|
|
icon: {
|
|
type: String,
|
|
default: 'icon-park-outline:game',
|
|
},
|
|
size: {
|
|
type: Number,
|
|
default: 18,
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<style scoped></style>
|