1
0
mirror of https://github.com/tabler/tabler-icons.git synced 2025-02-23 23:03:26 +01:00
tabler-icons/.build/svgr-template.js
2020-09-07 12:29:44 +02:00

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;