update versi docubook

This commit is contained in:
2025-05-04 00:22:18 +07:00
parent 5088760535
commit 11ff2a86ed
20 changed files with 1139 additions and 242 deletions

View File

@@ -0,0 +1,15 @@
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 }