Added UI library

This commit is contained in:
Mauro Balades
2024-07-03 14:24:47 +02:00
parent 4b6e9dd70f
commit f8b12599c8
6 changed files with 270 additions and 174 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))
}