import { Card, CardContent } from '@/components/ui/card'
import { Skeleton } from '@/components/ui/skeleton'
import type { Stats } from '../../types'
interface KPICardsProps {
stats: Stats | undefined
isLoading: boolean
}
interface KPICardProps {
title: string
value: number | string
isLoading: boolean
valueClass?: string
}
function KPICard({ title, value, isLoading, valueClass }: KPICardProps) {
return (
{value} {title}