mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-18 14:08:06 +01:00
18 lines
296 B
Vue
18 lines
296 B
Vue
<template>
|
|
<Icon :icon="icon" />
|
|
</template>
|
|
|
|
<script setup>
|
|
import { Icon } from '@iconify/vue/dist/offline'
|
|
import { loadIcon } from '@iconify/vue'
|
|
|
|
const props = defineProps({
|
|
name: {
|
|
type: [String, Object],
|
|
required: true
|
|
}
|
|
})
|
|
|
|
const icon = await loadIcon(props.name)
|
|
</script>
|