mirror of
https://git.coastit.co.za/caitlin/CRM_ENVR.git
synced 2026-07-10 11:15:43 +02:00
21 lines
536 B
TypeScript
21 lines
536 B
TypeScript
"use client"
|
|
|
|
import { Card, CardContent } from "@/components/ui/card"
|
|
import { Skeleton } from "@/components/ui/skeleton"
|
|
|
|
export function StatCardSkeleton() {
|
|
return (
|
|
<Card>
|
|
<CardContent className="p-6">
|
|
<div className="flex items-center justify-between">
|
|
<div className="space-y-2">
|
|
<Skeleton className="h-4 w-24" />
|
|
<Skeleton className="h-8 w-16" />
|
|
</div>
|
|
<Skeleton className="h-12 w-12 rounded-xl" />
|
|
</div>
|
|
</CardContent>
|
|
</Card>
|
|
)
|
|
}
|