So normally to include most of my SVG icons that require simple styling, I do:
SVGs can be imported and used directly as a React component in your React code.
import React from 'react'; import {ReactComponent as ReactIcon} from './icon.svg'; const App = () => { return ( ); } export default App;