2023-09-15 15:45:51 +08:00
|
|
|
import { loadingSvg } from "../../libs/svg";
|
2023-08-08 16:41:47 +08:00
|
|
|
|
2023-07-20 13:45:41 +08:00
|
|
|
export default function LoadingIcon() {
|
|
|
|
|
return (
|
2024-03-19 17:28:07 +08:00
|
|
|
<span
|
2023-07-20 13:45:41 +08:00
|
|
|
style={{
|
2023-09-15 15:45:51 +08:00
|
|
|
display: "inline-block",
|
|
|
|
|
width: "1.2em",
|
|
|
|
|
height: "1em",
|
2023-07-20 13:45:41 +08:00
|
|
|
}}
|
2023-09-15 15:45:51 +08:00
|
|
|
dangerouslySetInnerHTML={{ __html: loadingSvg }}
|
|
|
|
|
/>
|
2023-07-20 13:45:41 +08:00
|
|
|
);
|
|
|
|
|
}
|