import { cn } from "../../utils/cn" interface Props { rows?: number className?: string } export function UsersGridSkeleton({ rows = 10, className }: Props) { const skeletonRows = Array.from({ length: rows }) return (