LeLab / src /lib /utils.ts
GitHub CI
Sync from leLab @ 6c402fb18d38d667ff3afa01f48311677d579026
6abf060
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))
}