aboutsummaryrefslogtreecommitdiffstats
path: root/code/app/src/routes/book/buttons/+page.svelte
blob: 6668a641f6404a3c72d5d69d268e30bbc75bd439 (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 "$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>