@dnb/eufemia
Version:
DNB Eufemia Design System UI Library
11 lines (10 loc) • 400 B
TypeScript
import type { ValueNumberProps as NumberValueProps } from '../Number';
import type { CurrencyISO } from '../../constants/currencies';
export type ValueCurrencyProps = NumberValueProps & {
/**
* The currency of the component.
*/
currency?: CurrencyISO | true;
};
declare function Currency(props: ValueCurrencyProps): import("react/jsx-runtime").JSX.Element;
export default Currency;