2025-06-18 15:47:24 +02:00
|
|
|
import base64SVG from '@lucide/build-icons/utils/base64SVG';
|
|
|
|
|
import defineExportTemplate from '@lucide/build-icons/utils/defineExportTemplate';
|
2025-03-31 14:20:33 +00:00
|
|
|
|
2025-06-18 15:47:24 +02:00
|
|
|
export default defineExportTemplate(async ({
|
2025-03-31 14:20:33 +00:00
|
|
|
componentName,
|
|
|
|
|
iconName,
|
|
|
|
|
children,
|
|
|
|
|
getSvg,
|
|
|
|
|
deprecated,
|
|
|
|
|
deprecationReason,
|
|
|
|
|
}) => {
|
|
|
|
|
const svgContents = await getSvg();
|
|
|
|
|
const svgBase64 = base64SVG(svgContents);
|
|
|
|
|
|
|
|
|
|
// Astro doesn't need keyed children in loops
|
|
|
|
|
const keylessChildren = children.map((c) => {
|
|
|
|
|
const [element, { key, ...otherAttrs }] = c;
|
|
|
|
|
return [element, otherAttrs];
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// TODO: build-icons' `pretty` is set to false as the prettier
|
|
|
|
|
// formatter uses babel which I'm not sure it supports typescript
|
|
|
|
|
return `
|
|
|
|
|
import createLucideIcon from '../createLucideIcon';
|
|
|
|
|
import type { AstroComponent } from '../types'
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @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-astro - Documentation
|
|
|
|
|
*
|
|
|
|
|
* @param {import('../types').IconProps} props - Lucide icons props and any valid SVG attribute
|
|
|
|
|
* @returns {any} Astro Component
|
|
|
|
|
* ${deprecated ? `@deprecated ${deprecationReason}` : ''}
|
|
|
|
|
*/
|
|
|
|
|
const ${componentName} = createLucideIcon('${iconName}', ${JSON.stringify(keylessChildren)}) as AstroComponent;
|
|
|
|
|
|
|
|
|
|
export default ${componentName};
|
|
|
|
|
`;
|
2025-06-18 15:47:24 +02:00
|
|
|
});
|