mirror of
https://github.com/sussy-code/smov.git
synced 2026-04-07 10:19:23 +00:00
9 lines
199 B
TypeScript
9 lines
199 B
TypeScript
import "./Spinner.css";
|
|
|
|
interface SpinnerProps {
|
|
className?: string;
|
|
}
|
|
|
|
export function Spinner(props: SpinnerProps) {
|
|
return <div className={["spinner", props.className ?? ""].join(" ")} />;
|
|
}
|