diff --git a/components/font_icon/FontIcon.js b/components/font_icon/FontIcon.js index c949a685..a56bd612 100644 --- a/components/font_icon/FontIcon.js +++ b/components/font_icon/FontIcon.js @@ -8,7 +8,7 @@ const FontIcon = ({ alt, children, className, theme, value, ...other}) => ( // e className={classnames({ 'material-icons': typeof value === 'string' || typeof children === 'string' }, className)} {...other} > - + {value} {children} );