2023-01-10 19:53:55 +01:00
|
|
|
import "./Spinner.css";
|
|
|
|
|
2023-02-08 22:51:52 +01:00
|
|
|
interface SpinnerProps {
|
|
|
|
className: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function Spinner(props: SpinnerProps) {
|
|
|
|
return <div className={["spinner", props.className].join(" ")} />;
|
2023-01-10 19:53:55 +01:00
|
|
|
}
|