Added "stretch" to "justifyContent" (#21817)

This commit is contained in:
Oliver Anteros
2018-01-03 02:37:03 +01:00
committed by Mohamed Hegazy
parent 5b310b110f
commit 00a0a0f5fe

View File

@@ -1607,7 +1607,7 @@ declare namespace React {
* along the main-axis of their container.
* See CSS justify-content property https://www.w3.org/TR/css-flexbox-1/#justify-content-property
*/
justifyContent?: CSSWideKeyword | "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly";
justifyContent?: CSSWideKeyword | "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | "stretch";
layoutGrid?: CSSWideKeyword | any;