This commit is contained in:
Jorrin
2024-01-28 21:53:06 +01:00
parent 8977e3ea2c
commit 89d1310eac
8 changed files with 180 additions and 151 deletions

View File

@@ -0,0 +1,6 @@
import { type ClassValue, clsx } from "clsx";
import { twMerge } from "tailwind-merge";
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs));
}