Files
kiss-translator/src/views/Content/LoadingIcon.js

15 lines
280 B
JavaScript
Raw Normal View History

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 (
<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
);
}