diff --git a/react/react.d.ts b/react/react.d.ts index bd35811119..718daeedda 100644 --- a/react/react.d.ts +++ b/react/react.d.ts @@ -1145,6 +1145,11 @@ declare namespace __React { */ maxWidth?: any; + /** + * Sets the minimum height for an element. It prevents the height of the element to be smaller than the specified value. The value of min-height overrides both max-height and height. + */ + minHeight?: any; + /** * Sets the minimum width of an element. It limits the width property to be not smaller than the value specified in min-width. */