daphnis/lib/utils.ts

7 lines
169 B
TypeScript
Raw Permalink Normal View History

2024-06-29 05:22:22 +00:00
import { type ClassValue, clsx } from "clsx";
import { twMerge } from "tailwind-merge";
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs));
}