diff --git a/react/index.d.ts b/react/index.d.ts index a3b778ad48..234e3ec4f7 100644 --- a/react/index.d.ts +++ b/react/index.d.ts @@ -1296,7 +1296,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"; + justifyContent?: CSSWideKeyword | "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly"; layoutGrid?: CSSWideKeyword | any; diff --git a/react/test/cssProperties.tsx b/react/test/cssProperties.tsx index f037c43eb4..293f0b5374 100644 --- a/react/test/cssProperties.tsx +++ b/react/test/cssProperties.tsx @@ -21,7 +21,7 @@ const fontStyleStyleTest =
; const fontWeightStyle: React.CSSProperties = { fontWeight: 400 }; const fontWeightStyleTest = ; -const justifyContentStyle: React.CSSProperties = { justifyContent: 'space-around' }; +const justifyContentStyle: React.CSSProperties = { justifyContent: 'space-evenly' }; const justifyContentStyleTest = ;