mirror of
https://github.com/BradNut/boredgame
synced 2025-09-08 17:40:22 +00:00
7 lines
190 B
TypeScript
7 lines
190 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));
|
||
|
|
}
|