import { Card, CardContent, Skeleton } from '@heroui/react'; type Props = { lines?: number; }; export function LoadingSkeleton({ lines = 3 }: Props) { return (
{Array.from({ length: lines }).map((_, i) => ( {i < 2 && } ))}
); }