17 lines
426 B
Svelte
17 lines
426 B
Svelte
<script lang="ts">
|
|
import '$lib/scss/global.scss';
|
|
import type { Hst } from '@histoire/plugin-svelte';
|
|
import Logo from '$lib/components/atoms/Logo.svelte';
|
|
|
|
export let Hst: Hst;
|
|
</script>
|
|
|
|
<Hst.Story title="Atoms/Logo" layout={{ type: 'grid', width: 400 }}>
|
|
<Hst.Variant title="Animated">
|
|
<Logo animated={true} />
|
|
</Hst.Variant>
|
|
|
|
<Hst.Variant title="Static">
|
|
<Logo animated={false} />
|
|
</Hst.Variant>
|
|
</Hst.Story>
|