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