Skip to content

Commit 1b9259c

Browse files
authored
Merge pull request #5279 from WiXSL/loadingindicator-css
Improve LoadingIndicator component styling
2 parents cfb9379 + edac462 commit 1b9259c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/ra-ui-materialui/src/layout/LoadingIndicator.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ const useStyles = makeStyles(
1313
loader: {
1414
margin: 14,
1515
},
16+
loadedIcon: {},
1617
},
1718
{ name: 'RaLoadingIndicator' }
1819
);
@@ -31,7 +32,7 @@ const LoadingIndicator = props => {
3132
{...rest}
3233
/>
3334
) : (
34-
<RefreshIconButton />
35+
<RefreshIconButton className={classes.loadedIcon} />
3536
);
3637
};
3738

0 commit comments

Comments
 (0)