mirror of
https://github.com/hamster1963/nezha-dash.git
synced 2025-04-24 21:10:45 +08:00
8 lines
231 B
TypeScript
8 lines
231 B
TypeScript
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 }
|