import { Card, CardFooter, CardHeader } from "@/components/ui/card"; import { Skeleton } from "@/components/ui/skeleton"; /** * Skeleton fiel aos cards de métricas do dashboard (SectionCards) * Mantém o mesmo layout de 4 colunas responsivo */ export function SectionCardsSkeleton() { return (
{Array.from({ length: 4 }).map((_, index) => (
{/* Título com ícone */}
{/* Valor principal */} {/* Badge de tendência */}
))}
); }