chore: add shadcn

This commit is contained in:
afiqzudinhadi 2025-06-19 03:46:59 +08:00
parent ce1088e3ec
commit 063dfe39e9
10 changed files with 482 additions and 66 deletions

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))
}