mirror of
https://github.com/C9Glax/tranga-website.git
synced 2025-04-19 14:53:20 +02:00
6 lines
270 B
TypeScript
6 lines
270 B
TypeScript
import "../styles/loader.css";
|
|
import {CSSProperties} from "react";
|
|
|
|
export default function Loader({loading, style} : {loading: boolean, style?:CSSProperties|null}) {
|
|
return <span is-loading={loading ? "loading" : "done"} style={style ? style : undefined}></span>
|
|
} |