updated docs

This commit is contained in:
2025-05-13 18:45:23 +03:00
parent 6dfa17c5e6
commit 3627412fe9
247 changed files with 30258 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
import { Loader2 } from "lucide-react";
const LoadingContent: React.FC<{ height: string, size: string, plane: string }> = ({ height = "h-16", size = "w-36 h-48", plane = "h-full w-full" }) => {
return <>
<div className={`flex items-center justify-center ${plane}`}>
<div className={height}><Loader2 className={`animate-spin ${size}`} /></div>
</div></>
}
export default LoadingContent