mirror of
https://github.com/tabler/tabler-icons.git
synced 2025-01-17 12:48:26 +01:00
13 lines
293 B
JavaScript
13 lines
293 B
JavaScript
function template(
|
|
{ template },
|
|
opts,
|
|
{ imports, componentName, props, jsx, exports },
|
|
) {
|
|
return template.ast`
|
|
${imports}
|
|
function ${componentName}({ size = 24, color = "currentColor", stroke = 2, ...props }) { return (${jsx}); }
|
|
${exports}
|
|
`;
|
|
}
|
|
module.exports = template;
|