Add theme integration and shadcn setup in internal_frontend

This commit is contained in:
2025-07-01 17:37:30 +09:00
parent e06e6f8669
commit 20314c64b2
7 changed files with 254 additions and 40 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))
}