local-frontier / src /lib /utils.ts
Onur Solmaz
feat: add shadcn TypeScript scaffold
b2301b7
Raw
History Blame Contribute Delete
159 Bytes
import { clsx, type ClassValue } from "clsx";
import { twMerge } from "tailwind-merge";
export const cn = (...inputs: ClassValue[]) => twMerge(clsx(inputs));