Release 2.3.2

This commit is contained in:
2025-07-17 22:03:56 +03:00
parent 3ad6bf75a3
commit c7825f20b9
8 changed files with 324 additions and 16 deletions

View File

@@ -1,3 +1,10 @@
import { type ClassValue, clsx } from "clsx"
import { twMerge } from "tailwind-merge"
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs))
}
export const generateVerificationToken = () => {
return Math.random().toString(36).substring(2, 15) + Math.random().toString(36).substring(2, 15);
};