MinWidth.js
15 lines
| 1 | import UnitControl from '../../../../../components/unit-control'; |
| 2 | |
| 3 | export default function MinWidth( { value, onChange, disabled, placeholder, label } ) { |
| 4 | return ( |
| 5 | <UnitControl |
| 6 | label={ label } |
| 7 | id="gblocks-min-width" |
| 8 | value={ value } |
| 9 | placeholder={ placeholder } |
| 10 | onChange={ onChange } |
| 11 | disabled={ disabled } |
| 12 | /> |
| 13 | ); |
| 14 | } |
| 15 |