Is there any way I can import an SVG file in my public folder as a React component like so :
import { ReactComponent as MySvg } from '/assets/svg/mysvg.svg';
const MyComponent = () => {
return (
<div>
<MySvg />
</div>
);
};
export default MyComponent;
I know there are workarounds like using an img
tag but I really need my SVG to be used as a React component...
Thanks in advance !
You can copy & paste the svg code in a js file like this:
then, you can use it like this: