File size: 265 Bytes
e412c9c
 
 
49e7bf6
 
 
 
e412c9c
 
 
1
2
3
4
5
6
7
8
9
10
11
import { type ClassValue, clsx } from "clsx"
import { twMerge } from "tailwind-merge"

/**
 * cn - Class Names Utility
 * Combines clsx and tailwind-merge for optimal class handling
 */
export function cn(...inputs: ClassValue[]) {
  return twMerge(clsx(inputs))
}