import * as React from 'react'; import * as classNames from 'classnames'; export interface IconProps { glyph: string, className?: string, style?: React.CSSProperties, } export class Icon extends React.Component { constructor(props: IconProps) { super(props); } render() { const { className, glyph, ...elementProps } = this.props; const classes = classNames(className, glyph); return ( ); } }