import React, { CSSProperties } from "react"; type Props = { name: string; width?: number; height?: number; style?: CSSProperties; }; declare const SVGIcon: React.FC; export default SVGIcon;