0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-11-25 05:02:57 +01:00

Drop c- prefix for loading spinner component

This commit is contained in:
Thibaud Colas 2023-12-12 17:55:06 +00:00
parent 0865b9d716
commit 02b4444369
3 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
.c-spinner {
.w-spinner {
display: inline-block;
width: 1em;
height: 1em;

View File

@ -8,7 +8,7 @@ import Icon from '../Icon/Icon';
*/
const LoadingSpinner = () => (
<span>
<Icon name="spinner" className="c-spinner" />
<Icon name="spinner" className="w-spinner" />
{` ${gettext('Loading…')}`}
</span>
);

View File

@ -3,7 +3,7 @@
exports[`LoadingSpinner basic 1`] = `
<span>
<Icon
className="c-spinner"
className="w-spinner"
name="spinner"
/>
Loading…