LeLab / src /lib /utils.ts
GitHub CI
Sync from leLab @ 148482fcd7b675598864c5ebd7811cd7258aec75
017129f
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))
}