Files
Proxmox/src/lib/utils.tsx
2024-08-09 00:03:31 +02:00

9 lines
248 B
TypeScript

import { type ClassValue, clsx } from "clsx";
import { toast } from "sonner";
import { twMerge } from "tailwind-merge";
import { ClipboardCheck } from "lucide-react";
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs));
}