Demos
Empty
<DataValue.Currency showEmpty />
Placeholder
The value was not filled in
<DataValue.Currency placeholder="The value was not filled in" />
Value
150 kr
<DataValue.Currency value={150} suffix=" kr" />
Label
<DataValue.Currency label="Label text" showEmpty />
Label and value
60 000 000 kr
<DataValue.Currency label="Label text" value={60000000} />
Inline
This is before the component25 000 krThis is after the component
<>This is before the component<DataValue.Currency value={25000} inline />This is after the component</>
Inline and label
This is before the component25 000 krThis is after the component
<>This is before the component<DataValue.Currency label="Label text" value={25000} inline />This is after the component</>