forked from lapikud/lapikud.github.io
24 lines
936 B
Svelte
24 lines
936 B
Svelte
<script context="module">
|
|
import { defineMeta } from '@storybook/addon-svelte-csf';
|
|
import Svg from '../components/Svg.svelte';
|
|
|
|
const { Story } = defineMeta({
|
|
title: 'Components/Svg',
|
|
component: Svg,
|
|
});
|
|
</script>
|
|
|
|
<Story name="instagram" args={{ type: 'instagram' }} />
|
|
<Story name="facebook" args={{ type: 'facebook' }} />
|
|
<Story name="github" args={{ type: 'github' }} />
|
|
<Story name="connector" args={{ type: 'connector' }} />
|
|
<Story name="mirrorV" args={{ type: 'mirrorV' }} />
|
|
<Story name="mirrorH" args={{ type: 'mirrorH' }} />
|
|
<Story name="mirrorVH" args={{ type: 'mirrorVH' }} />
|
|
<Story name="mirrorHR" args={{ type: 'mirrorHR' }} />
|
|
<Story name="branch" args={{ type: 'branch' }} />
|
|
<Story name="branchH" args={{ type: 'branchH' }} />
|
|
<Story name="straightH" args={{ type: 'straightH' }} />
|
|
<Story name="straightHS" args={{ type: 'straightHS' }} />
|
|
<Story name="connectorHL" args={{ type: 'connectorHL' }} />
|