SurfSense/surfsense_web/components/ui/skeleton.tsx

14 lines
268 B
TypeScript
Raw Normal View History

2025-07-27 10:05:37 -07:00
import { cn } from "@/lib/utils";
2025-04-07 23:47:06 -07:00
function Skeleton({ className, ...props }: React.ComponentProps<"div">) {
2025-07-27 10:05:37 -07:00
return (
<div
data-slot="skeleton"
className={cn("bg-primary/10 animate-pulse rounded-md", className)}
{...props}
/>
);
2025-04-07 23:47:06 -07:00
}
2025-07-27 10:05:37 -07:00
export { Skeleton };