@shoplflow/base 0.23.1 → 0.23.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs CHANGED
@@ -588,7 +588,11 @@ exports.AvatarSizeVariants = {
588
588
  exports.StyledStack = styled6__default.default.div`
589
589
  display: flex;
590
590
  width: ${({ width }) => width};
591
+ max-width: ${({ maxWidth }) => maxWidth};
592
+ min-width: ${({ minWidth }) => minWidth};
591
593
  height: ${({ height }) => height};
594
+ max-height: ${({ maxHeight }) => maxHeight};
595
+ min-height: ${({ minHeight }) => minHeight};
592
596
  flex-direction: ${({ direction }) => direction};
593
597
  align-items: ${({ align }) => align};
594
598
  justify-content: ${({ justify }) => justify};