import { Layout, Playground, ExampleBlock, Attributes } from 'lib/components' import { Row, Col } from 'components' export const meta = { title: 'layout', description: 'tenotext', } ## Layout Smart and simple layout components. `} /> `} /> `} /> `} /> `} /> Row.Props | Attribute | Description | Type | Accepted values | Default | ---------- | ---------- | ---- | -------------- | ------ | | **gap** | grid spacing | `number` | - | 0 | | **justify** | horizontal alignment | `Justify` | `'start', 'end', 'center', 'space-around', 'space-between'` | `start` | | **align** | vertical alignment | `Align` | `'top', 'middle', 'bottom'` | `top` | | **component** | component name | `keyof JSX.IntrinsicElements` | - | `div` | | ... | native props | `HTMLAttributes` | `'autoFocus', 'name', 'className', ...` | - | Col.Props | Attribute | Description | Type | Accepted values | Default | ---------- | ---------- | ---- | -------------- | ------ | | **span** | number of column the grid spans | `number` | 0 - 24 | 24 | | **offset** | current column offset | `number` | - | 0 | | **component** | component name | `keyof JSX.IntrinsicElements` | - | `div` | | ... | native props | `HTMLAttributes` | `'name', 'className', ...` | - | export default ({ children }) => {children}