joyent-portal/packages/ui-toolkit/src/button/usage.md
Sérgio Ramos 8295bd6882 chore: initial lerna setup
this shall be a progressive process
2017-05-25 10:56:50 +01:00

40 lines
653 B
Markdown

### with text
```
<span>
<Button>Inspire the lazy</Button>
<span> </span>
<Button href='#1'>Inspire the lazy (anchor)</Button>
</span>
```
### secondary
```
<span>
<Button secondary>Inspire the brave</Button>
<span> </span>
<Button href='#2' secondary>Inspire the brave (anchor)</Button>
</span>
```
### tertiary
```
<span>
<Button tertiary>Inspire the tertiary</Button>
<span> </span>
<Button href='#3' tertiary>Inspire the tertiary (anchor)</Button>
</span>
```
### disabled
```
<span>
<Button disabled>Inspire the liars</Button>
<span> </span>
<Button href='#4' disabled>Inspire the liars (anchor)</Button>
</span>
```