alaskar.dev/src/lib/components/atoms/Logo.story.svelte
nomadics9 380fbfb041 init
2024-12-11 17:25:57 +03:00

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>