import classNames from 'classnames'; export default class Icon extends PureComponent { static propTypes = { id: PropTypes.string.isRequired, className: PropTypes.string, width: PropTypes.string, height: PropTypes.string, }; static defaultProps = { width: '26px', height: '26px', }; render () { const { className, width, height } = this.props; return ( ); } }