Files
AnimeTV-Frontend/shared/libs/shadcn/ui/skeleton.tsx
Rafi Arrafif 29f2d3fa59
All checks were successful
Integration Tests / integration-tests (pull_request) Successful in 1m4s
🔧 chore: replace dummy data with real data
2026-03-03 13:58:11 +07:00

14 lines
294 B
TypeScript

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