2024-01-07 15:59:19 +01:00
|
|
|
/* eslint-disable import/no-extraneous-dependencies */
|
|
|
|
|
import base64SVG from '@lucide/build-icons/utils/base64SVG.mjs';
|
|
|
|
|
|
2025-02-10 14:13:52 +01:00
|
|
|
export default async ({
|
|
|
|
|
componentName,
|
|
|
|
|
iconName,
|
|
|
|
|
children,
|
|
|
|
|
getSvg,
|
|
|
|
|
deprecated,
|
|
|
|
|
deprecationReason,
|
|
|
|
|
}) => {
|
|
|
|
|
const svgContents = await getSvg();
|
2024-01-07 15:59:19 +01:00
|
|
|
const svgBase64 = base64SVG(svgContents);
|
|
|
|
|
|
|
|
|
|
return `
|
2023-01-17 08:04:34 +01:00
|
|
|
import createLucideIcon from '../createLucideIcon';
|
2021-05-20 21:24:54 +02:00
|
|
|
|
2024-01-07 15:59:19 +01:00
|
|
|
/**
|
|
|
|
|
* @component @name ${componentName}
|
|
|
|
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
|
|
|
*
|
|
|
|
|
* @preview  - https://lucide.dev/icons/${iconName}
|
|
|
|
|
* @see https://lucide.dev/guide/packages/lucide-vue-next - Documentation
|
|
|
|
|
*
|
|
|
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
|
|
|
|
* @returns {FunctionalComponent} Vue component
|
2024-05-22 13:08:34 +02:00
|
|
|
* ${deprecated ? `@deprecated ${deprecationReason}` : ''}
|
2024-01-07 15:59:19 +01:00
|
|
|
*/
|
2025-03-21 10:35:54 +00:00
|
|
|
const ${componentName} = createLucideIcon('${iconName}', ${JSON.stringify(children)});
|
2021-05-20 21:24:54 +02:00
|
|
|
|
|
|
|
|
export default ${componentName};
|
|
|
|
|
`;
|
2024-01-07 15:59:19 +01:00
|
|
|
};
|