Number
import Number from 'frui/formats/Number';
Copy
Props
Name | Type | Required | Notes |
---|---|---|---|
absolute | string | No | Remove negative sign |
decimal | string | No | Character for decimal |
decimals | number | No | Number of decimals to show |
separator | boolean | No | Character of comma separator |
style | CSS Object | No | Standard CSS object |
value | string|number | Yes | Default value |
Basics
12,345.67
<Number value="12345.67" separator="," decimal="." decimals={2} />
Copy