import { Skeleton } from "@/components/ui/skeleton"; /** * Skeleton para os filtros de lançamentos * Mantém o layout horizontal com múltiplos selects */ export function FilterSkeleton() { return (
{Array.from({ length: 6 }).map((_, i) => ( ))}
); }