PDF-Assit_RAG / frontend /src /components /ui /skeleton.tsx
Param20h's picture
Changes Pro max
26a0c00 unverified
raw
history blame contribute delete
275 Bytes
import { cn } from "@/lib/utils"
function Skeleton({ className, ...props }: React.ComponentProps<"div">) {
return (
<div
data-slot="skeleton"
className={cn("animate-pulse rounded-md bg-muted", className)}
{...props}
/>
)
}
export { Skeleton }