storybook/docs/snippets/angular/button-story-with-args.ts.mdx

16 lines
210 B
Plaintext

```ts
//Button.stories.ts
const Template = (args: Button) => ({
component: Button,
props: args,
});
export const Primary = Template.bind({});
Primary.args = {
primary: true,
label: 'Primary',
};
```