vision-agent / components /ui /skeleton.tsx
MingruiZhang's picture
feat: Minor updates and introducing shadcn (#54)
78ebb49 unverified
raw
history blame
261 Bytes
import { cn } from "@/lib/utils"
function Skeleton({
className,
...props
}: React.HTMLAttributes<HTMLDivElement>) {
return (
<div
className={cn("animate-pulse rounded-md bg-muted", className)}
{...props}
/>
)
}
export { Skeleton }