refactor: ♻️ Initiate shadcn/ui refactor

This commit is contained in:
Jesse Wierzbinski 2024-11-29 22:39:42 +01:00
parent 73bfbcf252
commit a7b570905a
No known key found for this signature in database
9 changed files with 188 additions and 4 deletions

6
lib/utils.ts Normal file
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));
}