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

14 lines
279 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"
className={cn("bg-accent animate-pulse rounded-md", className)}
{...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 };