mirror of
https://github.com/tale/headplane.git
synced 2026-08-05 19:57:42 +00:00
5 lines
159 B
TypeScript
5 lines
159 B
TypeScript
import { type ClassValue, clsx } from 'clsx';
|
|
import { twMerge } from 'tailwind-merge';
|
|
|
|
export const cn = (...inputs: ClassValue[]) => twMerge(clsx(inputs));
|