1
1
mirror of https://github.com/neosubhamoy/neodlp.git synced 2026-02-05 07:32:22 +05:30

(chore): migrated to react v19 tailwindcss v4 and shadcn v2.6 and bumped up deps

This commit is contained in:
2025-06-13 19:40:27 +05:30
Verified
parent 71c8096b7f
commit 5d80b8dd38
55 changed files with 5677 additions and 5843 deletions

View File

@@ -1,12 +1,10 @@
import { cn } from "@/lib/utils"
function Skeleton({
className,
...props
}: React.HTMLAttributes<HTMLDivElement>) {
function Skeleton({ className, ...props }: React.ComponentProps<"div">) {
return (
<div
className={cn("animate-pulse rounded-md bg-primary/10", className)}
data-slot="skeleton"
className={cn("bg-accent animate-pulse rounded-md", className)}
{...props}
/>
)