Openstatus www.openstatus.dev
at 4c0f4c00a38753a5d0dfd7e7b7b7706dec6f1503 9 lines 266 B view raw
1import { Skeleton } from "@/components/ui/skeleton"; 2import { cn } from "@/lib/utils"; 3 4export function TableCellSkeleton({ 5 className, 6 ...props 7}: React.ComponentProps<typeof Skeleton>) { 8 return <Skeleton className={cn("h-5 w-12", className)} {...props} />; 9}