How can I add a svelte storybook story for the following component with the slot.
Button.svelte<button>
<slot />
</button>
Which I can use as
<script>
import Button from './Button.svelte';
</script>
<Button>Hello World</Button>
How can I create a story for such components which has slots in it?