From 664a753a7917f6c21407150eccc8f7ec51df4fc5 Mon Sep 17 00:00:00 2001 From: kamilbenkirane Date: Wed, 26 Nov 2025 20:52:12 +0100 Subject: [PATCH] fix: add missing utils.ts (cn utility) --- src/lib/utils.ts | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 src/lib/utils.ts diff --git a/src/lib/utils.ts b/src/lib/utils.ts new file mode 100644 index 0000000..373983e --- /dev/null +++ b/src/lib/utils.ts @@ -0,0 +1,6 @@ +import { type ClassValue, clsx } from "clsx"; +import { twMerge } from "tailwind-merge"; + +export function cn(...inputs: ClassValue[]) { + return twMerge(clsx(inputs)); +} \ No newline at end of file