This commit is contained in:
Milo Schwartz 2024-10-06 09:55:45 -04:00
parent 86e66f4236
commit 282203d9f2
No known key found for this signature in database
20 changed files with 697 additions and 15634 deletions

6
src/lib/utils.ts Normal file
View file

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