2025-06-18 15:47:24 +02:00
|
|
|
import base64SVG from '@lucide/build-icons/utils/base64SVG';
|
|
|
|
|
import defineExportTemplate from '@lucide/build-icons/utils/defineExportTemplate';
|
2023-07-13 16:39:02 +02:00
|
|
|
|
2025-06-18 15:47:24 +02:00
|
|
|
export default defineExportTemplate(async({
|
2025-02-10 14:13:52 +01:00
|
|
|
componentName,
|
|
|
|
|
iconName,
|
|
|
|
|
children,
|
|
|
|
|
getSvg,
|
|
|
|
|
deprecated,
|
|
|
|
|
deprecationReason,
|
|
|
|
|
}) => {
|
|
|
|
|
const svgContents = await getSvg();
|
2024-01-07 15:59:19 +01:00
|
|
|
const svgBase64 = base64SVG(svgContents);
|
2023-07-13 16:39:02 +02:00
|
|
|
|
|
|
|
|
return `
|
2023-01-17 08:04:34 +01:00
|
|
|
import createLucideIcon from '../createLucideIcon';
|
2025-01-10 14:35:28 +01:00
|
|
|
import { IconNode } from '../types';
|
|
|
|
|
|
|
|
|
|
export const __iconNode: IconNode = ${JSON.stringify(children)}
|
2022-06-12 22:31:05 +02:00
|
|
|
|
2023-07-13 16:39:02 +02: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-react - Documentation
|
|
|
|
|
*
|
|
|
|
|
* @param {Object} props - Lucide icons props and any valid SVG attribute
|
|
|
|
|
* @returns {JSX.Element} JSX Element
|
2024-05-22 13:08:34 +02:00
|
|
|
* ${deprecated ? `@deprecated ${deprecationReason}` : ''}
|
2023-07-13 16:39:02 +02:00
|
|
|
*/
|
2025-03-21 10:35:54 +00:00
|
|
|
const ${componentName} = createLucideIcon('${iconName}', __iconNode);
|
2022-06-12 22:31:05 +02:00
|
|
|
|
|
|
|
|
export default ${componentName};
|
|
|
|
|
`;
|
2025-06-18 15:47:24 +02:00
|
|
|
});
|