mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-20 15:51:12 -05:00
8 lines
234 B
TypeScript
8 lines
234 B
TypeScript
import { cn } from "@/lib/utils";
|
|
|
|
function Skeleton({ className, ...props }: React.HTMLAttributes<HTMLDivElement>) {
|
|
return <div className={cn("animate-pulse rounded-md bg-muted", className)} {...props} />;
|
|
}
|
|
|
|
export { Skeleton };
|