import * as React from 'react'; import {HTMLProps, PureComponent} from 'react'; export interface IconProps extends HTMLProps { name: string; } export class Icon extends PureComponent { render() { const {className, ...otherProps} = this.props; const cssClasses = `material-icons ${className || ''}`.trim(); return ( {this.props.name} ); } }