From 72f129472044a97ffa06136da0a473581914c7e9 Mon Sep 17 00:00:00 2001 From: IwanIDev Date: Sat, 21 Mar 2026 12:41:49 +0000 Subject: Initial Commit Set up Astro and shadcn/ui --- src/lib/utils.ts | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 src/lib/utils.ts (limited to 'src/lib') diff --git a/src/lib/utils.ts b/src/lib/utils.ts new file mode 100644 index 0000000..bd0c391 --- /dev/null +++ b/src/lib/utils.ts @@ -0,0 +1,6 @@ +import { clsx, type ClassValue } from "clsx" +import { twMerge } from "tailwind-merge" + +export function cn(...inputs: ClassValue[]) { + return twMerge(clsx(inputs)) +} -- cgit