mirror of
https://github.com/tale/headplane.git
synced 2026-07-27 08:08:56 +00:00
6 lines
171 B
TypeScript
6 lines
171 B
TypeScript
import { type ClassValue, clsx } from 'clsx';
|
|
import { twMerge } from 'tailwind-merge';
|
|
|
|
const cn = (...inputs: ClassValue[]) => twMerge(clsx(inputs));
|
|
export default cn;
|