Added min-height css property to react definitions

This commit is contained in:
Anton Ulyanov
2015-12-24 10:12:30 +02:00
parent 1da639a106
commit fd5229673a

5
react/react.d.ts vendored
View File

@@ -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.
*/