yanjinhui
2025-10-20 114ffafeeb20ef7066cb2e2882bb58b96f791ab5
1
2
3
4
5
6
7
import { h } from 'vue'
import type { VNode } from 'vue'
import { Icon, IconTypes } from '@/components/Icon'
 
export const useIcon = (props: IconTypes): VNode => {
  return h(Icon, props)
}