useIcon.ts 190 B

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