mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-29 18:06:49 +00:00
12 lines
199 B
Vue
12 lines
199 B
Vue
<script lang="ts" setup>
|
|
import { iconMap } from '#imports'
|
|
|
|
const props = defineProps<{
|
|
icon: keyof typeof iconMap
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<component :is="iconMap[props.icon]" />
|
|
</template>
|