This commit is contained in:
zhangkai
2024-06-05 14:27:06 +08:00
commit b825dcd4d5
730 changed files with 100244 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
import { cname } from "../utils";
export default function Skeleton({
className,
...props
}: React.HTMLAttributes<HTMLDivElement>) {
return (
<div
className={cname("animate-pulse rounded-md bg-primary/10", className)}
{...props}
/>
)
};