/// import * as React from 'react'; export interface IconSvgProps { glyph: string; viewBox: string; type: string; className?: string; style?: React.CSSProperties; title?: string; onClick?: React.MouseEventHandler; } declare const IconSvg: React.StatelessComponent; export default IconSvg;