mirror of
https://github.com/gosticks/plane.git
synced 2025-10-16 12:45:33 +00:00
10 lines
409 B
TypeScript
10 lines
409 B
TypeScript
import { clsx, type ClassValue } from "clsx";
|
|
import { twMerge } from "tailwind-merge";
|
|
|
|
export const SUPPORT_EMAIL = process.env.NEXT_PUBLIC_SUPPORT_EMAIL || "";
|
|
|
|
export const cn = (...inputs: ClassValue[]) => twMerge(clsx(inputs));
|
|
|
|
export const resolveGeneralTheme = (resolvedTheme: string | undefined) =>
|
|
resolvedTheme?.includes("light") ? "light" : resolvedTheme?.includes("dark") ? "dark" : "system";
|