working on userform

This commit is contained in:
Sockenklaus
2023-07-11 22:28:58 +02:00
parent 428ab06fcc
commit 3a85d2c196
8 changed files with 134 additions and 35 deletions

View File

@@ -0,0 +1,6 @@
import { h } from "vue"
import { NIcon } from 'naive-ui'
export function renderIcon(icon, className = "", size = 20) {
return h(NIcon, { component: icon, class: className, size: size })
}