Composable horizontal spacing style selector
Creates horizontal container layouts with configurable max-width values. All variants share responsive padding that adapts to screen size.
Optional
Configuration object for style variants
JSS object with composed styles and appropriate className
// Normal width (default)const styles = composeHorizontal();// Full width containerconst styles = composeHorizontal({ width: 'full' });// Small width containerconst styles = composeHorizontal({ width: 'small' }); Copy
// Normal width (default)const styles = composeHorizontal();// Full width containerconst styles = composeHorizontal({ width: 'full' });// Small width containerconst styles = composeHorizontal({ width: 'small' });
1.7.0
Composable horizontal spacing style selector
Creates horizontal container layouts with configurable max-width values. All variants share responsive padding that adapts to screen size.