Skip to content
Snippets Groups Projects
Unverified Commit 24b2c60b authored by Eugen Rochko's avatar Eugen Rochko Committed by GitHub
Browse files

Fix icons having an image role (#20600)

parent 87fbd08f
No related branches found
No related tags found
No related merge requests found
...@@ -14,7 +14,7 @@ export default class Icon extends React.PureComponent { ...@@ -14,7 +14,7 @@ export default class Icon extends React.PureComponent {
const { id, className, fixedWidth, ...other } = this.props; const { id, className, fixedWidth, ...other } = this.props;
return ( return (
<i role='img' className={classNames('fa', `fa-${id}`, className, { 'fa-fw': fixedWidth })} {...other} /> <i className={classNames('fa', `fa-${id}`, className, { 'fa-fw': fixedWidth })} {...other} />
); );
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment