File size: 208 Bytes
9dfccd9
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import { clsx, type ClassValue } from 'clsx'
import { twMerge } from 'tailwind-merge'

/** shadcn-compatible className helper */
export function cn(...inputs: ClassValue[]) {
  return twMerge(clsx(inputs))
}