mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 16:53:25 +00:00
8 lines
192 B
TypeScript
8 lines
192 B
TypeScript
import type { ClassValue } from "clsx";
|
|
import { clsx } from "clsx";
|
|
import { twMerge } from "tailwind-merge";
|
|
|
|
export function cn(...inputs: ClassValue[]) {
|
|
return twMerge(clsx(inputs));
|
|
}
|