svrjs-nextjs-website/components/ui/skeleton.tsx

16 lines
264 B
TypeScript
Raw Permalink Normal View History

import { cn } from "@/lib/utils";
2024-07-28 12:52:13 +02:00
function Skeleton({
className,
...props
}: React.HTMLAttributes<HTMLDivElement>) {
return (
<div
className={cn("animate-pulse rounded-md bg-muted", className)}
{...props}
/>
);
2024-07-28 12:52:13 +02:00
}
export { Skeleton };