github.com/e154/smart-home@v0.17.2-0.20240311175135-e530a6e5cd45/static_source/admin/src/hooks/web/useIcon.ts (about) 1 import { h } from 'vue' 2 import type { VNode } from 'vue' 3 import { Icon } from '@/components/Icon' 4 import { IconTypes } from '@/types/icon' 5 6 export const useIcon = (props: IconTypes): VNode => { 7 return h(Icon, props) 8 }