@papernote/ui
Version:
A modern React component library with a paper notebook aesthetic - minimal, professional, and expressive
12 lines • 520 B
TypeScript
export interface CurrencyDisplayProps {
amount: number | null | undefined;
currency?: string;
locale?: string;
className?: string;
size?: 'sm' | 'md' | 'lg';
color?: 'default' | 'success' | 'warning' | 'error' | 'muted';
showSign?: boolean;
precision?: number;
}
export default function CurrencyDisplay({ amount, currency, locale, className, size, color, showSign, precision, }: CurrencyDisplayProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=CurrencyDisplay.d.ts.map