Sha256: e44d6854e07e8d07d4d138518a776b54f6d514fdfe503eb28953ab93a1b08bbb
Contents?: true
Size: 596 Bytes
Versions: 2
Compression:
Stored size: 596 Bytes
Contents
declare type CurrencyProps = { abbreviate?: boolean; align?: 'center' | 'left' | 'right'; amount: string; aria?: { [key: string]: string; }; className?: string; dark?: boolean; data?: { [key: string]: string; }; decimals?: 'default' | 'matching'; emphasized?: boolean; id?: string; label?: string; size?: 'sm' | 'md' | 'lg'; symbol?: string; variant?: 'default' | 'light' | 'bold'; unit?: string; unstyled?: boolean; }; declare const Currency: (props: CurrencyProps) => JSX.Element; export default Currency;
Version data entries
2 entries across 2 versions & 1 rubygems