123456789101112 |
- import { Icon } from '@iconify/vue';
- import { defineComponent, h } from 'vue';
- function createIcon(name: string) {
- return defineComponent({
- setup(props, { attrs }) {
- return () => h(Icon, { icon: name, ...props, ...attrs });
- },
- });
- }
- export { createIcon };
|