This commit is contained in:
2025-05-29 01:00:01 +09:00
parent 03c2434236
commit ef38202815
14 changed files with 1417 additions and 36 deletions
+6
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))
}