Revert "fix prettier and convert to module"

This reverts commit 0db1ed2144.
This commit is contained in:
Vikeo
2024-08-31 20:11:10 +02:00
parent 0db1ed2144
commit be2d76fbc2
5 changed files with 2762 additions and 2830 deletions

31
svgr.config.cjs Normal file
View File

@@ -0,0 +1,31 @@
/* eslint-disable no-undef */
/* eslint-disable-next-line no-undef */
module.exports = {
template: require('./template'),
titleProp: true,
svgProps: {
height: '{props.size || 16}',
width: '{props.size || 16}',
},
svgoConfig: {
plugins: [
{
name: 'preset-default',
params: {
overrides: {
inlineStyles: {
onlyMatchedOnce: false,
},
removeDoctype: false,
removeViewBox: false,
mergePaths: true,
},
},
},
],
},
typescript: true,
outDir: './src/Icons/generated',
};