Skip to content

Commit 697b4d6

Browse files
FDiskasjavivelasco
authored andcommitted
Update FontIcon.js (react-toolbox#1321)
Fixes react-toolbox#1320
1 parent d5f2c98 commit 697b4d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/font_icon/FontIcon.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const FontIcon = ({ alt, children, className, theme, value, ...other}) => ( // e
88
className={classnames({ 'material-icons': typeof value === 'string' || typeof children === 'string' }, className)}
99
{...other}
1010
>
11-
<span aria-hidden="true">{value}</span>
11+
{value}
1212
{children}
1313
</span>
1414
);

0 commit comments

Comments
 (0)