UNPKG

expense-manager-react

Version:

A comprehensive expense tracking application built with React, TypeScript, and Supabase

10 lines (9 loc) 380 B
import { ClassValue } from 'clsx'; export declare function cn(...inputs: ClassValue[]): string; /** * Formats a number as Indian Rupees (₹) * @param amount - The amount to format * @param options - Formatting options * @returns Formatted currency string with ₹ symbol */ export declare function formatCurrency(amount: number, options?: Intl.NumberFormatOptions): string;