Files
users/components/ui/skeleton.tsx
v0 2ca12179e2 fix: support default and named exports for useDebounce hook
Ensure compatibility with both default and named exports for useDebounce.

Co-authored-by: null <4804959+fnvtk@users.noreply.github.com>
2025-08-08 11:46:31 +00:00

7 lines
251 B
TypeScript

import * as React from "react"
import { cn } from "@/lib/utils"
export function Skeleton({ className, ...props }: React.HTMLAttributes<HTMLDivElement>) {
return <div className={cn("animate-pulse rounded-md bg-muted/40", className)} {...props} />
}