Files
cunkebao_v3/Cunkebao/app/components/ui/skeleton.tsx

10 lines
263 B
TypeScript
Raw Normal View History

2025-03-29 16:50:39 +08:00
import type React from "react"
import { cn } from "@/lib/utils"
function Skeleton({ className, ...props }: React.HTMLAttributes<HTMLDivElement>) {
return <div className={cn("animate-pulse rounded-md bg-muted", className)} {...props} />
}
export { Skeleton }