Skip to content

Commit

Permalink
Update FontIcon.js (#1321)
Browse files Browse the repository at this point in the history
Fixes #1320
  • Loading branch information
FDiskas authored and javivelasco committed Mar 23, 2017
1 parent d5f2c98 commit 697b4d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/font_icon/FontIcon.js
Original file line number Diff line number Diff line change
Expand Up @@ -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}
>
<span aria-hidden="true">{value}</span>
{value}
{children}
</span>
);
Expand Down

0 comments on commit 697b4d6

Please sign in to comment.