Files
shop-server/Untitled/src/app/components/ui/skeleton.tsx
T
@kirill.komarov ebe1ede25c base commit
2026-05-04 12:34:01 +05:00

14 lines
275 B
TypeScript

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