@dnb/eufemia
Version:
DNB Eufemia Design System UI Library
10 lines (9 loc) • 309 B
TypeScript
import { AmountBase, type AmountProps } from './Amount';
export type NumberProps = AmountProps;
/**
* Stat.Number — A general-purpose formatted number display.
*
* Supports plain numbers, currencies, percentages, and custom formatting.
*/
declare const Number: typeof AmountBase;
export default Number;