Files
typing-test/node_modules/lucide-vue-next/dist/esm/createLucideIcon.js
T
2026-08-27 17:57:30 +07:00

23 lines
468 B
JavaScript

/**
* @license lucide-vue-next v0.475.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
import { h } from 'vue';
import Icon from './Icon.js';
const createLucideIcon = (iconName, iconNode) => (props, { slots }) => h(
Icon,
{
...props,
iconNode,
name: iconName
},
slots
);
export { createLucideIcon as default };
//# sourceMappingURL=createLucideIcon.js.map