blob: 19ba1631ef2d9dcd6898a2b7540ac2af1801848c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<script>
import Button from "$lib/components/button.svelte";
</script>
<section>
<h2>Primary</h2>
<Button kind="primary" text="Small" size="sm" />
<Button kind="primary" text="Medium/Default" />
<Button kind="primary" text="Large" size="lg" />
<Button kind="primary" text="Extra large" size="xl" />
</section>
<section>
<h2>Secondary</h2>
<Button kind="secondary" text="Click me!" />
</section>
<section>
<h2>White</h2>
<Button kind="white" text="Click me!" />
</section>
<section>
<h2>Loading</h2>
<Button kind="primary" loading={true} text="Wait" />
</section>
|