how to use svg in react js code example
Example 1: importing svg into react
import React from 'react';
import { ReactComponent as BrandIcon } from "./assets/brand-icon.svg";
export default function(){
return(
);
}
Example 2: how to use svg in react js
import React from 'react';
import LogoName from '../assets/logo.svg'
const Header = () => {
return (
);
}