forked from github/plane
5 lines
159 B
TypeScript
5 lines
159 B
TypeScript
|
import { clsx, type ClassValue } from "clsx";
|
||
|
import { twMerge } from "tailwind-merge";
|
||
|
|
||
|
export const cn = (...inputs: ClassValue[]) => twMerge(clsx(inputs));
|