Update FontIcon.js (#1321)

Fixes #1320
old
Vytenis 2017-03-23 12:06:29 +02:00 committed by Javi Velasco
parent d5f2c98075
commit 697b4d67ba
1 changed files with 1 additions and 1 deletions

View File

@ -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>
);