@camol/vite-plugin-react-svg
v0.0.5
Published
## Usage ```javascript import svgPlugin from "vite-plugin-react-svg";
Downloads
2
Readme
vite-plugin-react-svg
Usage
import svgPlugin from "vite-plugin-react-svg";
// vite.config.js
// ...
plugins: [
svgPlugin(options) // svgr options
]
// ...
import svgUrl, { ReactComponent as SvgIcon } from '***.svg';
// ...
<SvgIcon style={{fontSize: 16}} />
// ...
<img src={svgUrl} alt=""/>
// ...