export interface ISvgProps { /** * Source url for the svg to load. */ src: string; /** * Required aria-label value for the svg used or alt tag if replace = true. */ alt: string; /** * Additional class names to add to the control for custom styling. */ className?: string; /** * Whether or not to replace the original image tag with an async loaded . * @default true */ replace?: boolean; /** * Any additional props are passed to the constructed or . */ [key: string]: any; }