import React, { PropTypes } from 'react'; import classnames from 'classnames'; const FontIcon = ({ children, className, value, ...other}) => ( {value} {children} ); FontIcon.propTypes = { children: PropTypes.any, className: PropTypes.string, value: PropTypes.oneOfType([ PropTypes.string, PropTypes.element ]) }; FontIcon.defaultProps = { className: '' }; export default FontIcon;