Fix spinner and broken buttons (#30286)

This commit is contained in:
Ivana Huckova
2021-01-14 20:05:38 +01:00
committed by GitHub
parent 860ff8cf7d
commit 60828316c0
@@ -61,7 +61,7 @@ export const Icon = React.forwardRef<HTMLDivElement, IconProps>(
const svgSize = getSvgSize(size);
/* Temporary solution to display also font awesome icons */
if (name?.startsWith('fa-')) {
if (name?.startsWith('fa fa-')) {
return <i className={cx(name, className)} {...divElementProps} style={style} />;
}