import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow, } from "ui/table"; import { Input } from "ui/input"; import { Search, ChevronRight } from "lucide-react"; import { Skeleton } from "ui/skeleton"; import { Avatar, AvatarFallback } from "ui/avatar"; export function UsersTableSkeleton() { // Generate reasonable number of skeleton rows const skeletonRows = Array.from({ length: 8 }, (_, i) => i); return (