mirror of
https://github.com/harivansh-afk/Saas-Teamspace.git
synced 2026-04-15 11:02:20 +00:00
6 lines
166 B
TypeScript
6 lines
166 B
TypeScript
import { type ClassValue, clsx } from 'clsx'
|
|
import { twMerge } from 'tailwind-merge'
|
|
|
|
export function cn(...inputs: ClassValue[]) {
|
|
return twMerge(clsx(inputs))
|
|
}
|