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