satupeta-main/shared/components/ui/skeleton.tsx
2026-01-27 09:31:12 +07:00

14 lines
285 B
TypeScript

import { cn } from "@/shared/utils/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 }