Tailwind CSS Update

This commit is contained in:
Sir Blob
2025-01-25 00:14:37 -05:00
parent e79aeffdc3
commit 2d722551f5
8 changed files with 293 additions and 19 deletions

6
src/lib/utils.ts Normal file
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))
}