#### Primary Button Primary button to be used once per page. Only use to indicate main action per pattern. Min. width: 120px ```jsx const React = require('react'); const { default: Button } = require('./'); ; ``` #### Secondary Button Secondary buttons can be used freely to indicate other actions on patterns. Min. width: 120px ```jsx const React = require('react'); const { default: Button } = require('./'); ; ``` #### 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('./'); ; ``` #### Small Button Small buttons are supporters of the secondary button. They can be used within cluttered or complex patterns to free up space. ```jsx const React = require('react'); const { default: Button } = require('./'); ; ``` #### Loading Button ```jsx const React = require('react'); const { default: Button } = require('./'); ; ``` #### Quick Action Quick action buttons can be embedded in components to give additional functionality. They can be used in either primary or secondary color palettes, depending on importance. ```jsx const React = require('react'); const { default: Button } = require('./'); const { Actions } = require('../icons'); ; ``` #### 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; Inspire the lazy; ``` #### 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; Inspire the lazy secondary ; ``` #### In-paragraph 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;

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. Learn More

; ``` #### Disabled Disabled anchors cannot be actioned and the cursor is disabled. ```jsx const React = require('react'); const Anchor = require('../text').Anchor; Inspire the lazy disabled ; ```