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}