aboutsummaryrefslogtreecommitdiffstats
path: root/apps/kit/src/routes/book/buttons/+page.svelte
blob: c8e8c93d0428d57b5ac9eda9a308ed024f4a2cd1 (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
<script>
    import Button from "$lib/components/button.svelte";
</script>

<h1>Buttons</h1>
<section>
    <h2>Primary</h2>
    <div class="">
        <Button kind="primary" text="Normal" />
        <Button kind="primary" text="Large" size="lg" />
        <Button kind="primary" text="Medium" size="md" />
        <Button kind="primary" text="Small" size="sm" />
        <Button kind="primary" text="Extra large" size="xl" />
        <Button kind="primary" text="Extra small" size="xs" />
    </div>
</section>
<section>
    <h2>Secondary</h2>
    <Button kind="secondary" text="Click me!" />
</section>
<section>
    <h2>White</h2>
    <Button kind="white" text="Click me!" />
</section>