Components
ReUI Spinner with the first 10 official ReUI examples, preserved from the MIT-licensed source registry.

import {
Card,
CardContent,
CardDescription,
CardHeader,
CardTitle,
} from "@/components/ui/reui-spinner-utils/card"
import { Spinner } from "@/components/ui/reui-spinner"
export default function Pattern() {
return (
<Card className="min-h-[200px] w-full max-w-xs">
<CardContent className="flex grow flex-col items-center justify-center gap-4">
<Spinner className="size-4 opacity-50" />
<div className="flex flex-col items-center gap-1">
<p className="text-sm font-medium">Setting up your workspace</p>
<p className="text-muted-foreground text-xs">
This may take a few seconds...
</p>
</div>
</CardContent>
</Card>
)
}
// Rebuild the demo when the shared Spinner implementation changes.








