import React from "react"; interface SVGImageProps extends React.SVGProps { src: React.FC> | any; width?: string | number; height?: string | number; className?: string; } const SVGImage: React.FC = ({ src: IconComponent, width = "30px", height = "30px", className = "", ...props }) => { return ( ); }; export default SVGImage;