blob: 0a54930c11c9a6768604969a8a8dfd2180e9be76 (
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
24
25
26
|
<script>
import Button from "$lib/components/button.svelte";
</script>
<h1>Buttons</h1>
<section>
<h2>Primary</h2>
<div class="">
<Button kind="primary" text="Medium/Default" />
<Button kind="primary" text="Large" size="lg" />
<Button kind="primary" text="Small" size="sm" />
<Button kind="primary" text="Extra large" size="xl" />
</div>
</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" size="sm" />
</section>
|