Update Appimage

This commit is contained in:
MacRimi
2025-09-28 20:25:55 +02:00
parent 70f0db73e5
commit 9f08694d9b
5 changed files with 174 additions and 0 deletions

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