vision-agent / components /ui /Skeleton.tsx
MingruiZhang's picture
feat: Chat selector in Header (#59)
009c95b unverified
raw
history blame
No virus
264 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 };