ReactJS import .svg and change it's size
Add custom.d.ts to ./scr
declare module '*.svg' { import React = require('react') export const ReactComponent: React.FC<React.SVGProps<SVGSVGElement>> const src: string export default src }
Import svg on your page
import { ReactComponent as IconLogo } from '../assets/images/logo.svg'
Usage
<IconLogo height='10' />