0.0.5 • Published 2 years ago

@camol/vite-plugin-react-svg v0.0.5

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

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=""/>
// ...