skbeta/lib/utils.ts
Christopher Arraya c55ab3d49e initial commit
2024-01-13 20:55:51 -05:00

7 lines
167 B
TypeScript

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