From 619f91a38b3d10661dd2f27ebba228ce7c60ad01 Mon Sep 17 00:00:00 2001 From: DIonysos Dajka Date: Fri, 27 Nov 2020 15:46:23 +0100 Subject: [PATCH] fix(Box): Fix missing flexAlign propType --- src/Box/index.js | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/Box/index.js b/src/Box/index.js index 3f98f619..2282737e 100644 --- a/src/Box/index.js +++ b/src/Box/index.js @@ -86,7 +86,14 @@ Box.propTypes = { PropTypes.array, ]), flexAlign: PropTypes.oneOfType([ - PropTypes.oneOf(['top', 'left', 'center', 'bottom', 'right']), + PropTypes.oneOf([ + 'top', + 'left', + 'center', + 'bottom', + 'right', + 'stretch', + ]), PropTypes.array, ]), basis: PropTypes.oneOfType([