Files
users/components/ui/skeleton.tsx
v0 bdf456523b fix: resolve build issues and finalize fixes
Complete Toaster and Skeleton components, add loading.tsx
Update development docs for changes and progress.

Co-authored-by: null <4804959+fnvtk@users.noreply.github.com>
2025-08-08 11:34:42 +00:00

8 lines
271 B
TypeScript

import * as React from "react"
import { cn } from "@/lib/utils"
export function Skeleton(props: React.HTMLAttributes<HTMLDivElement>) {
const { className, ...rest } = props
return <div className={cn("animate-pulse rounded-md bg-muted/40", className)} {...rest} />
}