storybook/docs/snippets/angular/button-story-using-args.ts.mdx
2021-09-03 23:31:04 +01:00

31 lines
408 B
Plaintext

```ts
// Button.stories.ts
import { Button } from './button.component';
export default {
component: Button,
};
export const Primary = {
args: {
label: 'Button',
backgroundColor: '#ff0',
},
};
export const Secondary = {
args: {
...Primary.args,
label: '😄👍😍💯',
},
};
export const Tertiary = {
args: {
...Primary.args,
label: '📚📕📈🤓',
},
};
```