From 00a0a0f5fe04f726cdb4c66ec9435f4b72369dbd Mon Sep 17 00:00:00 2001 From: Oliver Anteros Date: Wed, 3 Jan 2018 02:37:03 +0100 Subject: [PATCH] Added "stretch" to "justifyContent" (#21817) --- types/react/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/react/index.d.ts b/types/react/index.d.ts index c5c1c76d17..cb8330de60 100644 --- a/types/react/index.d.ts +++ b/types/react/index.d.ts @@ -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;