2017-12-15 16:09:09 +02:00
#### Primary Button
2017-12-06 17:03:40 +02:00
Primary button to be used once per page. Only use to indicate main action per pattern.
Min. width: 120px
2017-10-11 14:01:26 +03:00
```jsx
2017-10-31 12:03:44 +02:00
const React = require('react');
const { default: Button } = require('./');
2017-05-18 21:21:33 +03:00
< span >
< Button > Inspire the lazy< / Button >
2017-10-12 21:15:51 +03:00
< / span > ;
2017-05-18 21:21:33 +03:00
```
2017-12-15 16:09:09 +02:00
#### Secondary Button
2017-12-06 17:03:40 +02:00
Secondary buttons can be used freely to indicate other actions on patterns.
Min. width: 120px
2017-05-18 21:21:33 +03:00
2017-10-11 14:01:26 +03:00
```jsx
2017-10-31 12:03:44 +02:00
const React = require('react');
const { default: Button } = require('./');
2017-05-18 21:21:33 +03:00
< span >
< Button secondary > Inspire the brave< / Button >
2017-10-12 21:15:51 +03:00
< / span > ;
2017-05-18 21:21:33 +03:00
```
2017-12-15 16:09:09 +02:00
#### Disabled Button
Disabled buttons can be used freely to indicate that no action is permitted in this button.
Min. width: 120px
```jsx
const React = require('react');
const { default: Button } = require('./');
< span >
< Button secondary disabled > Inspire the brave< / Button >
< / span > ;
```
#### Small Button
2017-12-06 17:03:40 +02:00
Small buttons are supporters of the secondary button. They can be used within cluttered or complex patterns to free up space.
2017-05-18 21:21:33 +03:00
2017-10-11 14:01:26 +03:00
```jsx
2017-10-31 12:03:44 +02:00
const React = require('react');
const { default: Button } = require('./');
2017-05-18 21:21:33 +03:00
< span >
2017-12-06 17:03:40 +02:00
< Button secondary small > Inspire the brave< / Button >
2017-10-12 21:15:51 +03:00
< / span > ;
2017-05-18 21:21:33 +03:00
```
2017-12-15 16:09:09 +02:00
#### Loading Button
2017-05-18 21:21:33 +03:00
2017-10-11 14:01:26 +03:00
```jsx
2017-10-31 12:03:44 +02:00
const React = require('react');
const { default: Button } = require('./');
2017-05-18 21:21:33 +03:00
< span >
2017-12-06 17:03:40 +02:00
< Button secondary loading >
Inspire the liars
2017-10-12 21:15:51 +03:00
< / Button >
< / span > ;
2017-05-18 21:21:33 +03:00
```
2017-10-12 21:55:05 +03:00
2017-12-15 16:09:09 +02:00
#### Quick Action
2017-12-06 17:03:40 +02:00
Quick action buttons are to be imbedded in components to give additional functionality. They can be used in either primary or secondary colour palettes depending on importance
2017-10-12 21:55:05 +03:00
```jsx
2017-10-31 12:03:44 +02:00
const React = require('react');
const { default: Button } = require('./');
2017-12-06 17:03:40 +02:00
const { Actions } = require('../icons');
2017-10-12 21:55:05 +03:00
< span >
2017-12-06 17:03:40 +02:00
< Button secondary icon rect >
< Actions / >
2017-10-12 23:13:44 +03:00
< / Button >
2017-12-06 17:03:40 +02:00
< Button secondary icon rect disabled >
< Actions / >
< / Button >
< / span >
```
#### Primary
Primary anchor is a type of a link that sits outside the body text.
```jsx
const React = require('react');
const Anchor = require('../text').Anchor;
< Anchor href = "https://joyent.com" > Inspire the lazy< / Anchor >
```
#### Reversed
Reversed anchors is used on dark backgrounds, where a default anchor would not
provide enough contrast.
```jsx
const React = require('react');
const Anchor = require('../text').Anchor;
< span
style={{
'background-color': '#3B46CC',
height: 80,
width: 250,
display: 'flex',
'align-items': 'center',
'justify-content': 'center'
}}
>
< Anchor href = "https://joyent.com" reversed >
Inspire the lazy secondary
< / Anchor >
2017-10-12 23:13:44 +03:00
< / span > ;
2017-10-12 21:55:05 +03:00
```
2017-12-06 17:03:40 +02:00
#### In text anchor
In-paragraph anchor is a link that sits inside a text components. The default
state does not have an underline. The underline appears on hover and click.
```jsx
const React = require('react');
const Anchor = require('../text').Anchor;
< p >
Body text. Crack that whip. Give the past a slip. Step on a crack. Break your
momma's back. When a problem comes along.You must whip it.
< Anchor href = "#" > Learn More< / Anchor >
< / p > ;
```
#### Disabled
Disabled anchors cannot be actioned and the cursor is disabled.
```jsx
const React = require('react');
const Anchor = require('../text').Anchor;
< Anchor disabled href = "https://joyent.com" >
Inspire the lazy disabled
< / Anchor > ;
```