mirror of
https://github.com/liyunze-coding/socials.git
synced 2026-09-23 16:04:41 +00:00
7 lines
194 B
TypeScript
7 lines
194 B
TypeScript
import { clsx } from "clsx";
|
|
import type { ClassValue } from "clsx";
|
|
import { twMerge } from "tailwind-merge";
|
|
|
|
export function cn(...inputs: ClassValue[]) {
|
|
return twMerge(clsx(inputs));
|
|
}
|