Files
ui/src/runtime/components/elements/Icon.vue
2022-02-11 18:13:25 +01:00

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>