WIP/Experimental: Theme Switcher

This commit is contained in:
grimsi
2024-03-22 10:44:21 +01:00
parent ce9351f56b
commit 9424263c4a
10 changed files with 3092 additions and 1084 deletions
+6
View File
@@ -0,0 +1,6 @@
import { type ClassValue, clsx } from "clsx"
import { twMerge } from "tailwind-merge"
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs))
}