import { Skeleton } from '@/components/ui/skeleton'; import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from '@/components/ui/table'; interface AssetTableSkeletonProps { columns: number; rows?: number; } export function AssetTableSkeleton({ columns, rows = 5 }: AssetTableSkeletonProps) { return (