Composable wrap background style selector
Creates wrap background styles with configurable color options. Wrap backgrounds provide responsive padding for content containers.
Optional
Configuration object for style variants
JSS object with composed styles and appropriate className
// White background (default)const styles = composeWrap();// Light gray backgroundconst styles = composeWrap({ color: 'light' });// Dark gray backgroundconst styles = composeWrap({ color: 'dark' }); Copy
// White background (default)const styles = composeWrap();// Light gray backgroundconst styles = composeWrap({ color: 'light' });// Dark gray backgroundconst styles = composeWrap({ color: 'dark' });
1.7.0
Composable wrap background style selector
Creates wrap background styles with configurable color options. Wrap backgrounds provide responsive padding for content containers.