factory.ts 276 B

123456789101112
  1. import { Icon } from '@iconify/vue';
  2. import { defineComponent, h } from 'vue';
  3. function createIcon(name: string) {
  4. return defineComponent({
  5. setup(props, { attrs }) {
  6. return () => h(Icon, { icon: name, ...props, ...attrs });
  7. },
  8. });
  9. }
  10. export { createIcon };