iot-playground / src /lib /utils.ts
3v324v23's picture
Initial commit: IoT Playground
847854e
Raw
History Blame Contribute Delete
166 Bytes
import { clsx, type ClassValue } from "clsx"
import { twMerge } from "tailwind-merge"
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs))
}