konobangu/apps/webui/src/components/ui/skeleton.tsx

15 lines
322 B
TypeScript

import { cn } from "@/presentation/utils";
import { ComponentProps } from "react";
function Skeleton({ className, ...props }: ComponentProps<"div">) {
return (
<div
data-slot="skeleton"
className={cn("bg-accent animate-pulse rounded-md", className)}
{...props}
/>
);
}
export { Skeleton };