Files
GMW/services/frontend/src/components/primitives/skeleton.tsx
T

17 lines
312 B
TypeScript
Raw Normal View History

import { cn } from "@/lib/utils";
export function Skeleton({
className,
...props
}: React.HTMLAttributes<HTMLDivElement>) {
return (
<div
className={cn(
"rounded-[10px] bg-white/[0.06] animate-shimmer relative overflow-hidden",
className,
)}
{...props}
/>
);
}