Add shadcn

This commit is contained in:
Oliver Ilp
2025-04-17 19:14:23 +03:00
parent c9feef0c26
commit ae2c43da9a
5 changed files with 199 additions and 20 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))
}