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