v4.0.0rc4-branch #5

Merged
asonix merged 40 commits from v4.0.0rc4-branch into asonix/changes 2022-11-14 16:53:51 +00:00
Showing only changes of commit 24b2c60beb - Show all commits

View file

@ -14,7 +14,7 @@ export default class Icon extends React.PureComponent {
const { id, className, fixedWidth, ...other } = this.props;
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} />
);
}