Composable bordered grid style selector
Creates bordered grid layouts with configurable column count and theme. Bordered grids display borders between cells with responsive behavior.
Configuration object for style variants
JSS object with composed styles and appropriate className
// Two-column light border (default)const styles = composeBordered({ columns: 2 });// Three-column dark borderconst styles = composeBordered({ columns: 3, theme: 'dark' });// Four-column light borderconst styles = composeBordered({ columns: 4, theme: 'light' }); Copy
// Two-column light border (default)const styles = composeBordered({ columns: 2 });// Three-column dark borderconst styles = composeBordered({ columns: 3, theme: 'dark' });// Four-column light borderconst styles = composeBordered({ columns: 4, theme: 'light' });
1.7.0
Composable bordered grid style selector
Creates bordered grid layouts with configurable column count and theme. Bordered grids display borders between cells with responsive behavior.