infoalloggi-monorepo/apps/infoalloggi/src/components/ui/skeleton.tsx

14 lines
264 B
TypeScript
Raw Normal View History

2025-08-28 18:27:07 +02:00
import { cn } from "~/lib/utils";
2025-08-04 17:45:44 +02:00
function Skeleton({ className, ...props }: React.ComponentProps<"div">) {
2025-08-28 18:27:07 +02:00
return (
<div
className={cn("bg-accent animate-pulse rounded-md", className)}
2025-08-29 16:18:32 +02:00
data-slot="skeleton"
2025-08-28 18:27:07 +02:00
{...props}
/>
);
2025-08-04 17:45:44 +02:00
}
2025-08-28 18:27:07 +02:00
export { Skeleton };