useIcon.ts 220 B

12345678
  1. import { h } from 'vue'
  2. import type { VNode } from 'vue'
  3. import { Icon } from '@/components/Icon'
  4. import { IconTypes } from '@/types/icon'
  5. export const useIcon = (props: IconTypes): VNode => {
  6. return h(Icon, props)
  7. }