import React, { PropTypes } from 'react'; import classnames from 'classnames'; const FontIcon = ({ alt, children, className, theme, value, ...other}) => ( // eslint-disable-line {children} ); FontIcon.propTypes = { alt: PropTypes.string, children: PropTypes.node, className: PropTypes.string, theme: PropTypes.object, // eslint-disable-line value: PropTypes.oneOfType([ PropTypes.string, PropTypes.element, ]), }; FontIcon.defaultProps = { alt: '', className: '', }; export default FontIcon; export { FontIcon };