import * as React from 'react'; export default interface ISVGIcon { title?: string; desc?: string; children?: React.ReactNode; viewBox?: string; preserveAspectRatio?: string; className?: string; stroke?: string; fill?: string; width?: string | number; height?: string | number; 'aria-labelledby'?: string; 'aria-describedby'?: string; }