mirror of
https://github.com/drawdb-io/drawdb.git
synced 2025-05-24 18:39:12 +00:00
7 lines
134 B
JavaScript
7 lines
134 B
JavaScript
import { clsx } from "clsx";
|
|
import { twMerge } from "tailwind-merge";
|
|
|
|
export function cn(...args) {
|
|
return twMerge(clsx(args));
|
|
}
|