1
0
mirror of https://github.com/community-scripts/ProxmoxVE.git synced 2025-04-30 05:43:08 +00:00
2024-11-04 23:55:08 +01:00

7 lines
169 B
TypeScript

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