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,7 +0,0 @@
<script>
import SkeletonText from "./SkeletonText.svelte";
</script>
<div style="width: 300px">
<SkeletonText {...$$props} />
</div>

View file

@ -1,18 +0,0 @@
import { withKnobs, select, boolean, number } from "@storybook/addon-knobs";
import Component from "./SkeletonText.Story.svelte";
export default { title: "SkeletonText", decorators: [withKnobs] };
export const Default = () => ({
Component,
props: {
heading: boolean("Skeleton text at a larger size (heading)"),
paragraph: boolean("Use multiple lines of text (paragraph)"),
lines: number("The number of lines in a paragraph (lines)", 3),
width: select(
"Width (in px or %) of single line of text or max-width of paragraph lines (width)",
{ "100%": "100%", "250px": "250px" },
"100%"
),
},
});