mirror of
https://github.com/MbinOrg/mbin-website.git
synced 2025-06-30 07:08:54 +00:00
7 lines
192 B
TypeScript
7 lines
192 B
TypeScript
import type { ClassValue } from 'clsx';
|
|
import { clsx } from 'clsx';
|
|
import { twMerge } from 'tailwind-merge';
|
|
|
|
export function cn(...inputs: ClassValue[]) {
|
|
return twMerge(clsx(inputs));
|
|
}
|