I have a react numpad component in my code and I need to change its size, but I cannot modify its CSS
, theme
or something like that properly.
I've already realized that some style like colors or fonts may be changed in node_modules\react-numpad\build
, but omething like size
or align
I cannot change. Somebody help me, please , after looking to the following template code.
import NumPad from 'react-numpad';
<NumPad.Number
onChange={(value) => { console.log('value', value)}}
label={'Total'}
placeholder={'my placeholder'}
value={100}
decimal={2}
/>
When we click on the component, we get the numpad open. I need this numpad to be something much bigger than the standard one.