mirror of
https://github.com/johndoe6345789/low-code-react-app-b.git
synced 2026-04-25 14:14:57 +00:00
16 lines
430 B
TypeScript
16 lines
430 B
TypeScript
import { LoadingSpinner } from '@/components/atoms'
|
|
|
|
interface LoadingStateProps {
|
|
message?: string
|
|
size?: 'sm' | 'md' | 'lg'
|
|
}
|
|
|
|
export function LoadingState({ message = 'Loading...', size = 'md' }: LoadingStateProps) {
|
|
return (
|
|
<div className="flex flex-col items-center justify-center gap-3 py-12">
|
|
<LoadingSpinner size={size} />
|
|
<p className="text-sm text-muted-foreground">{message}</p>
|
|
</div>
|
|
)
|
|
}
|