This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

core / web / src / lib / components / ui / Logo.stories.svelte
508 B 26 lines
1<script module lang="ts"> 2 import { defineMeta } from "@storybook/addon-svelte-csf"; 3 import Logo from "./Logo.svelte"; 4 5 const { Story } = defineMeta({ 6 title: "UI/Logo", 7 component: Logo, 8 tags: ["autodocs"], 9 argTypes: { 10 wordmark: { control: "boolean" } 11 }, 12 args: { 13 wordmark: false 14 } 15 }); 16</script> 17 18<Story name="Icon" /> 19<Story name="Wordmark" args={{ wordmark: true }} /> 20 21<Story name="Both"> 22 <div class="flex flex-col items-start gap-4"> 23 <Logo /> 24 <Logo wordmark /> 25 </div> 26</Story>