Files
tm_panel/src/app/loading.tsx
T
2025-09-09 11:20:26 +03:30

15 lines
338 B
TypeScript

import { cn } from "../lib/utils";
interface IProps {
className?: string | null;
}
const Loading = ({ className = "w-svw h-svh" }: IProps) => {
return (
<div className={cn("flex items-center justify-center", className)}>
<span className="loading loading-dots loading-xl"></span>
</div>
);
};
export default Loading;