chatbot-template/components/ui/skeleton.tsx

16 lines
264 B
TypeScript
Raw Normal View History

2024-11-14 12:16:05 -05:00
import { cn } from '@/lib/utils';
function Skeleton({
className,
...props
}: React.HTMLAttributes<HTMLDivElement>) {
return (
<div
2024-11-14 12:16:05 -05:00
className={cn('animate-pulse rounded-md bg-muted', className)}
{...props}
/>
2024-11-14 12:16:05 -05:00
);
}
2024-11-14 12:16:05 -05:00
export { Skeleton };