mirror of
https://github.com/Vikeo/LifeTrinket.git
synced 2025-11-15 07:27:58 +00:00
28 lines
553 B
JavaScript
28 lines
553 B
JavaScript
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',
|
|
};
|