1
0
Fork 0
mirror of https://github.com/sussy-code/smov.git synced 2024-12-27 15:47:41 +01:00
smov/src/components/layout/Loading.tsx

23 lines
934 B
TypeScript
Raw Normal View History

export interface LoadingProps {
text?: string;
className?: string;
}
export function Loading(props: LoadingProps) {
2022-02-13 18:49:03 +01:00
return (
<div className={props.className}>
<div className="flex flex-col items-center justify-center py-12">
<div className="flex h-12 items-center justify-center">
<div className="animate-loading-pin bg-denim-300 mx-1 h-2 w-2 rounded-full"></div>
<div className="animate-loading-pin bg-denim-300 mx-1 h-2 w-2 rounded-full [animation-delay:150ms]"></div>
<div className="animate-loading-pin bg-denim-300 mx-1 h-2 w-2 rounded-full [animation-delay:300ms]"></div>
<div className="animate-loading-pin bg-denim-300 mx-1 h-2 w-2 rounded-full [animation-delay:450ms]"></div>
</div>
{props.text && props.text.length ? (
<p className="mt-3 max-w-xs text-sm opacity-75">{props.text}</p>
) : null}
</div>
2022-02-13 18:49:03 +01:00
</div>
);
}