mirror of
https://github.com/element-hq/element-web
synced 2024-11-27 11:47:23 +03:00
indentation
This commit is contained in:
parent
b00d822bc0
commit
228a6adfdf
1 changed files with 7 additions and 7 deletions
|
@ -34,13 +34,13 @@ const Spinner = ({w = 32, h = 32, imgClassName, message}) => {
|
||||||
return (
|
return (
|
||||||
<div className={divClass}>
|
<div className={divClass}>
|
||||||
{ message && <React.Fragment><div className="mx_Spinner_Msg">{ message}</div> </React.Fragment> }
|
{ message && <React.Fragment><div className="mx_Spinner_Msg">{ message}</div> </React.Fragment> }
|
||||||
<img
|
<img
|
||||||
src={imageSource}
|
src={imageSource}
|
||||||
width={w}
|
width={w}
|
||||||
height={h}
|
height={h}
|
||||||
className={imgClassName}
|
className={imgClassName}
|
||||||
aria-label={_t("Loading...")}
|
aria-label={_t("Loading...")}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue