diff --git a/src/Stack/index.js b/src/Stack/index.js index 49aae7ef..86df5813 100644 --- a/src/Stack/index.js +++ b/src/Stack/index.js @@ -20,6 +20,8 @@ function Stack({children, spacing, breakpoints, as, ...otherProps}) { return ( {React.Children.map(children, (child, index) => { + if (!child) return null; + const isFirst = index === 0; return (