2026-08-14 10:49:44 +07:00
|
|
|
import { cn } from "@/lib/utils";
|
|
|
|
|
|
2026-08-15 17:53:48 +07:00
|
|
|
export function Skeleton({
|
|
|
|
|
className,
|
|
|
|
|
...props
|
|
|
|
|
}: React.HTMLAttributes<HTMLDivElement>) {
|
2026-08-14 10:49:44 +07:00
|
|
|
return (
|
|
|
|
|
<div
|
|
|
|
|
className={cn(
|
2026-08-15 17:53:48 +07:00
|
|
|
"rounded-[10px] bg-white/[0.06] animate-shimmer relative overflow-hidden",
|
2026-08-14 10:49:44 +07:00
|
|
|
className,
|
|
|
|
|
)}
|
2026-08-15 17:53:48 +07:00
|
|
|
{...props}
|
2026-08-14 10:49:44 +07:00
|
|
|
/>
|
|
|
|
|
);
|
|
|
|
|
}
|