feat: Init shadcn-ui

This commit is contained in:
Simon C
2024-04-04 14:44:15 +02:00
parent 3ee0decb25
commit 038c55a547
9 changed files with 1206 additions and 47 deletions

6
src/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))
}