2025-06-18 15:47:24 +02:00
|
|
|
import base64SVG from '@lucide/build-icons/utils/base64SVG';
|
|
|
|
|
import defineExportTemplate from '@lucide/build-icons/utils/defineExportTemplate';
|
2024-01-07 15:59:19 +01: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);
|
|
|
|
|
|
|
|
|
|
return `\
|
2023-04-20 16:08:34 +02:00
|
|
|
import { LucideIconData } from './types';
|
2021-04-11 15:48:50 +04:30
|
|
|
|
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
|
|
|
*/
|
|
|
|
|
const ${componentName}: LucideIconData = ${JSON.stringify(children)}; //eslint-disable-line no-shadow-restricted-names
|
2021-04-11 19:04:24 +02:00
|
|
|
|
|
|
|
|
export default ${componentName};
|
2024-02-01 22:38:21 +09:00
|
|
|
`;
|
2025-06-18 15:47:24 +02:00
|
|
|
});
|