```md
import { Meta, Story } from '@storybook/addon-docs';
import Button from './Button.svelte';
export const someFunction = (someValue) => {
return `i am a ${someValue}`;
};
{(args) => {
const { label } = args;
const functionResult = someFunction(label);
return {
Component: Button,
props: {
...args,
label: functionResult,
},
};
}}
```