Skip to content

Commit

Permalink
Use i tagname for icons
Browse files Browse the repository at this point in the history
  • Loading branch information
javivelasco committed Nov 16, 2015
1 parent 4707a26 commit 709cc37
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/font_icon/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ const FontIcon = props => {
let className = style[props.value];
if (props.className) className += ` ${props.className}`;
return (
<span data-react-toolbox='icon' {...props} className={className}>
<i data-react-toolbox='icon' {...props} className={className}>
{props.children}
</span>
</i>
);
};

Expand Down

0 comments on commit 709cc37

Please sign in to comment.