7 lines
224 B
TypeScript
7 lines
224 B
TypeScript
export const LoadingSpinner = () => {
|
|
return (
|
|
<div className="flex items-center justify-center p-8">
|
|
<div className="h-8 w-8 animate-spin rounded-full border-4 border-muted border-t-primary" />
|
|
</div>
|
|
)
|
|
}
|