s-yadav / react-number-format

React component to format numbers in an input or as a text.
MIT License
3.87k stars 409 forks source link

I only want to see number only? #809

Closed dotku closed 11 months ago

dotku commented 1 year ago

Describe the issue and the actual behavior

I don't need the input box, just need the number formatter, any replacement?

JanderSilv commented 11 months ago

Use the displayType="text" property.

<NumericFormat displayType="text" value={110} />

https://s-yadav.github.io/react-number-format/docs/props#displaytype-text--input

dotku commented 11 months ago

Thanks, that is expected. I just fork and created a demo: https://codesandbox.io/s/displaytype-demo-forked-467lrz

Resolved :)

dotku commented 11 months ago

closed