This commit is contained in:
2026-03-24 09:21:38 +09:00
parent e4d2966377
commit 39c7eda9cc
31 changed files with 1655 additions and 135 deletions

6
src/utils/tailwind.ts Normal file
View File

@@ -0,0 +1,6 @@
import clsx from "clsx"
import { twMerge } from "tailwind-merge"
export const cn = (...inputs: Parameters<typeof clsx>) => {
return twMerge(clsx(...inputs))
}