My team and I are building a react application and we want to import SVGs not as a string so we'll have the ability to use it as a component.
Since we've installed the project using CRA, SVGR is already installed and is in webpack configuration.
We wanted to know if there's any other way to import the SVG file and not to use the import {ReactComponent as Logo} from '../path' but use something like import Logo from '../path'.
Also is there any benefits from using it that way? Actually we're able to import it the way we want but we can't use it outside of an image tag.
Thanks.