UNPKG

@dnb/eufemia

Version:

DNB Eufemia Design System UI Library

14 lines (13 loc) 429 B
import { Props as NumberValueProps } from '../Number'; import type { CurrencyISO } from '../../constants/currencies'; export type Props = NumberValueProps & { /** * The currency of the component. */ currency?: CurrencyISO | true; }; declare function Currency(props: Props): import("react/jsx-runtime").JSX.Element; declare namespace Currency { var _supportsSpacingProps: boolean; } export default Currency;