UNPKG

@dnb/eufemia

Version:

DNB Eufemia Design System UI Library

10 lines (9 loc) 316 B
import { type AmountProps } from './Amount'; export type CurrencyProps = Omit<AmountProps, 'percent'> & { percent?: never; }; declare function Currency(props: CurrencyProps): import("react/jsx-runtime").JSX.Element; declare namespace Currency { var _supportsSpacingProps: boolean; } export default Currency;