You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
860 B
TypeScript
42 lines
860 B
TypeScript
3 years ago
|
import React from "react";
|
||
|
|
||
|
import "./Spinner.scss";
|
||
|
|
||
|
const Spinner = ({
|
||
|
size = "1em",
|
||
|
circleWidth = 8,
|
||
2 years ago
|
synchronized = false,
|
||
3 years ago
|
}: {
|
||
|
size?: string | number;
|
||
|
circleWidth?: number;
|
||
2 years ago
|
synchronized?: boolean;
|
||
3 years ago
|
}) => {
|
||
2 years ago
|
const mountTime = React.useRef(Date.now());
|
||
|
const mountDelay = -(mountTime.current % 1600);
|
||
|
|
||
3 years ago
|
return (
|
||
|
<div className="Spinner">
|
||
2 years ago
|
<svg
|
||
|
viewBox="0 0 100 100"
|
||
|
style={{
|
||
|
width: size,
|
||
|
height: size,
|
||
|
// fix for remounting causing spinner flicker
|
||
|
["--spinner-delay" as any]: synchronized ? `${mountDelay}ms` : 0,
|
||
|
}}
|
||
|
>
|
||
3 years ago
|
<circle
|
||
|
cx="50"
|
||
|
cy="50"
|
||
|
r={50 - circleWidth / 2}
|
||
|
strokeWidth={circleWidth}
|
||
|
fill="none"
|
||
|
strokeMiterlimit="10"
|
||
|
/>
|
||
|
</svg>
|
||
|
</div>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default Spinner;
|