The spacing between children can be adjusted using the space prop.Responsive values are supported, e.g. space={{ mobile: 'small', tablet: 'medium', desktop: 'large', wide: 'xlarge' }}
Inlines can be collapsed into a single vertical stack responsively using the collapseBelow prop and specifying the name of the breakpoint, e.g. collapseBelow=“tablet”.The following results in three inline elements from the tablet breakpoint upwards, and collapses into a vertical stack on mobile.
By default, Inline renders its content in document order, which also doubles as the screen reader order. The visual order can be flipped using the reverse prop.This is useful when navigating forward within a flow, where the primary action is on the right when inline, and on top when collapsed. For this reason, the default horizontal alignment when reversed is to the right.
Reverse is only applied in combination with the collapseBelow prop to ensure the content is reversed on the same row, but follows the document order when collapsed.