14 lines
461 B
TypeScript
14 lines
461 B
TypeScript
import React from 'react'
|
|
|
|
interface LoadingStateProps {
|
|
message?: string
|
|
}
|
|
|
|
export function LoadingState({ message = 'Loading...' }: LoadingStateProps) {
|
|
return (
|
|
<div className="flex flex-col items-center justify-center py-12">
|
|
<div className="animate-spin rounded-full h-12 w-12 border-t-2 border-b-2 border-primary-600 mb-4"></div>
|
|
<p className="text-gray-500 dark:text-gray-400">{message}</p>
|
|
</div>
|
|
)
|
|
}
|