mirror of
https://github.com/Vikeo/LifeTrinket.git
synced 2025-11-11 13:46:21 +00:00
32 lines
625 B
JavaScript
32 lines
625 B
JavaScript
/* 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',
|
|
};
|
|
|
|
|