Files
Termix/src/ui/components/skeleton.tsx
T

14 lines
280 B
TypeScript
Raw Normal View History

2025-09-12 14:42:00 -05:00
import { cn } from "@/lib/utils";
2025-08-07 02:20:27 -05:00
function Skeleton({ className, ...props }: React.ComponentProps<"div">) {
return (
<div
data-slot="skeleton"
2026-05-11 01:23:11 -05:00
className={cn("animate-pulse rounded-none bg-muted", className)}
2025-08-07 02:20:27 -05:00
{...props}
/>
2025-09-12 14:42:00 -05:00
);
2025-08-07 02:20:27 -05:00
}
2025-09-12 14:42:00 -05:00
export { Skeleton };