diff options
Diffstat (limited to 'scripts/svgr-template.js')
-rw-r--r-- | scripts/svgr-template.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/scripts/svgr-template.js b/scripts/svgr-template.js new file mode 100644 index 00000000..c8c41384 --- /dev/null +++ b/scripts/svgr-template.js @@ -0,0 +1,12 @@ +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; |