style: ui fix on skeleton

This commit is contained in:
Nathnael
2026-06-24 12:58:30 +00:00
parent 2261675e21
commit 2877255948

View File

@@ -1,13 +1,13 @@
import { cn } from "../lib/utils"
import { cn } from "../lib/utils";
function Skeleton({ className, ...props }: React.ComponentProps<"div">) {
return (
<div
data-slot="skeleton"
className={cn("animate-pulse rounded-md bg-accent", className)}
className={cn("animate-pulse rounded-md bg-gray-200", className)}
{...props}
/>
)
);
}
export { Skeleton }
export { Skeleton };