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