react-toolbox/components/navigation/readme.md

35 lines
1.3 KiB
Markdown
Raw Normal View History

2015-07-06 13:53:37 +03:00
# Navigation
2015-11-01 14:39:49 +03:00
This component is intended to be a common wrapper for a group of links or buttons. It sets a minimal layout, semantic markup and spacing for each of those elements.
<!-- example -->
```jsx
import Navigation from 'react-toolbox/lib/navigation';
2015-11-01 14:39:49 +03:00
const links = [
{ href: 'http://', icon: 'person', label: 'Profile' },
{ href: 'http://', icon: 'inbox', label: 'Inbox'}
2015-07-06 13:53:37 +03:00
];
2015-11-01 14:39:49 +03:00
const actions = [
{ label: 'Alarm', raised: true, icon: 'access-alarm'},
{ label: 'Location', raised: true, accent: true, icon: 'room'}
2015-07-06 13:53:37 +03:00
];
2015-11-01 14:39:49 +03:00
const NavigationTest = () => (
<div>
<Navigation type='horizontal' actions={actions} />
<Navigation type='horizontal' routes={links} />
</div>
);
2015-07-06 13:53:37 +03:00
```
## Properties
| Name | Type | Default | Description|
2015-11-01 14:39:49 +03:00
|:-----|:-----|:-----|:-----|
| `actions` | `Array` | | Array of objects that represent buttons so the keys will be transferred as properties to those.|
| `className` | `String` | | Set a custom class styles to style the navigation.|
| `routes` | `Array` | | Array of objects similar to actions but that will be rendered as `<Link/>` component definition. |
| `type` | `String` | `horizontal` | Type of the navigation, it can be vertical or horizontal.|