1
0
mirror of https://github.com/yldio/copilot.git synced 2024-11-15 15:50:06 +02:00
copilot/packages/ui-toolkit/src/button/usage.md

40 lines
653 B
Markdown
Raw Normal View History

### 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>
```