web/components/ui/skeleton.tsx
Aidan e8927986d5
All checks were successful
Build and Push Docker Image / build_and_push (push) Successful in 1m41s
bump packages, improve dashboard design, add partial functionality to dashboard with api
2025-02-05 00:56:21 -05:00

16 lines
266 B
TypeScript

import { cn } from "@/lib/utils"
function Skeleton({
className,
...props
}: React.HTMLAttributes<HTMLDivElement>) {
return (
<div
className={cn("animate-pulse rounded-md bg-primary/10", className)}
{...props}
/>
)
}
export { Skeleton }