chore: add shadcn/ui

This commit is contained in:
trafficlunar 2024-12-03 20:00:50 +00:00
parent f1824a64ea
commit fe24818e18
9 changed files with 143 additions and 10 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))
}