chore: remove storybook

This commit is contained in:
Eric Liu 2020-10-14 16:23:44 -07:00
commit 378fe06e03
116 changed files with 103 additions and 14249 deletions

View file

@ -1,5 +0,0 @@
<script>
import Loading from "./Loading.svelte";
</script>
<Loading {...$$props} />

View file

@ -1,14 +0,0 @@
import { withKnobs, boolean, text } from "@storybook/addon-knobs";
import Component from "./Loading.Story.svelte";
export default { title: "Loading", decorators: [withKnobs] };
export const Default = () => ({
Component,
props: {
active: boolean("Active (active)", true),
withOverlay: boolean("With overlay (withOverlay)", false),
small: boolean("Small (small)", false),
description: text("Description (description)", "Active loading indicator"),
},
});