aboutsummaryrefslogtreecommitdiffstats
path: root/apps/kit/src/routes/book/buttons
diff options
context:
space:
mode:
Diffstat (limited to 'apps/kit/src/routes/book/buttons')
-rw-r--r--apps/kit/src/routes/book/buttons/+page.svelte23
1 files changed, 0 insertions, 23 deletions
diff --git a/apps/kit/src/routes/book/buttons/+page.svelte b/apps/kit/src/routes/book/buttons/+page.svelte
deleted file mode 100644
index 19ba163..0000000
--- a/apps/kit/src/routes/book/buttons/+page.svelte
+++ /dev/null
@@ -1,23 +0,0 @@
-<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>