mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-19 04:19:22 +01:00
9 lines
248 B
JavaScript
9 lines
248 B
JavaScript
export default ({ componentName, children }) => `
|
|
import { LucideIconData } from './types';
|
|
|
|
/* eslint-disable no-shadow-restricted-names */
|
|
const ${componentName}: LucideIconData = ${JSON.stringify(children)};
|
|
|
|
export default ${componentName};
|
|
`;
|