1
0
mirror of https://github.com/zclzone/vue-naive-admin.git synced 2025-05-03 07:39:00 +08:00
2022-04-23 19:09:06 +08:00

7 lines
183 B
JavaScript

import { h } from 'vue'
import { NIcon } from 'naive-ui'
export function renderIcon(icon, props = { size: 12 }) {
return () => h(NIcon, { ...props }, { default: () => h(icon) })
}