我正在使用NumberFormat程序包,但我希望对其进行样式设置,就像使用material-ui中的TextField一样。
我的组件如下:
<NumberFormat label={strings.minDays} style={{marginRight:'20px'}}/>
我已经尝试了几项没有成功的事情:
className
属性; classes
属性; (withStyles)
前缀但是我有点迷茫,不确定如何实现自己的目标。
感谢您的帮助。
答案 0 :(得分:1)
import YourCustomInput from 'custom';
<NumberFormat
customInput={<YourCustomINput style={{}} className="CustomClassName"/>}
format="#### #### #### ####"/>