import { type ClassValue, clsx } from "clsx"
import { twMerge } from "tailwind-merge"

export function cn(...inputs: ClassValue[]) {
  return twMerge(clsx(inputs))
}

/** Dirham currency symbol (UAE) — uses the custom currency-symbol-v2 font */
export const DIRHAM_SYMBOL = "\uE001";
export const DIRHAM_HTML = '<span class="currency">\uE001</span>';
