14 lines
300 B
JavaScript
14 lines
300 B
JavaScript
/** @type {import('@svgr/core').Config} */
|
|
module.exports = {
|
|
typescript: true,
|
|
jsxRuntime: 'automatic',
|
|
expandProps: 'end',
|
|
filenameCase: 'kebab',
|
|
svgProps: {
|
|
'aria-hidden': true,
|
|
focusable: false,
|
|
},
|
|
// note: SVGO transformation is handled in the sync script
|
|
svgo: false,
|
|
}
|