From fd5229673a59cef244cf4e4ebe7f93d836b64c75 Mon Sep 17 00:00:00 2001 From: Anton Ulyanov Date: Thu, 24 Dec 2015 10:12:30 +0200 Subject: [PATCH] Added min-height css property to react definitions --- react/react.d.ts | 5 +++++ 1 file changed, 5 insertions(+) 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. */