svg2c
v3.0.1
Published
Optimize and convert SVG files into React components via SVGO.
Downloads
1,430
Readme
svg2c
Optimize and convert SVG files into React components via SVGO.
svg2c 'svgs/**' --out-dir src/assets
// some file
import Flower from './assets/Flower';
<Flower />;
That's it, svg2c
will make sure to convert attributes to the proper case and any
other React specific things that need to be done. You can then require the generated files in your react app and they will render as normal. refs
are automatically forwarded to the <svg>
element.
Customizing
If you want to customize the output a bit more you can provide a SVGO config with any plugins or settings you like.
{
"plugins": [
{
"addAttributesToSVGElement": {
"attributes": [{ "fill": "currentColor" }, { "aria-hidden": true }]
}
}
]
}
and
svg2c 'svgs/**' --out-dir src/assets --config ./config.json
webpack loader
If you want integrate your svg to components into your apps webpack build pipeline there is a loader for you.
{
// ...
module: {
rules: [
// ...
{
test: /.+\.svg$/,
include: 'svgs/',
use: {
loader: 'svg2c/loader',
options: {
esModules: true, // output es modules instead of commonJs
config: {
// any optional customizing SVGO config can be added
},
},
},
},
];
}
}
Then in your App:
import Flower from './svgs/Flower.svg';
function MyPage() {
return <Flower />;
}