mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 05:51:21 +08:00
46 lines
679 B
Plaintext
46 lines
679 B
Plaintext
```md
|
|
<!-- Button.stories.mdx -->
|
|
|
|
import { Meta, Story } from '@storybook/addon-docs';
|
|
|
|
import Button from './Button.svelte';
|
|
|
|
<Meta
|
|
title="Accessibility testing"
|
|
component={Button}
|
|
argTypes={{
|
|
backgroundColor: {
|
|
control: {
|
|
type: 'color',
|
|
}
|
|
}
|
|
}} />
|
|
|
|
export const Template = (args) => ({
|
|
Component: Button,
|
|
props: args,
|
|
});
|
|
|
|
## This is an accessible story
|
|
|
|
<Story
|
|
name="Accessible"
|
|
args={{
|
|
primary: false,
|
|
label: 'Button'
|
|
}}>
|
|
{Template.bind({})}
|
|
</Story>
|
|
|
|
## This is not
|
|
|
|
<Story
|
|
name="Inaccessible"
|
|
args={{
|
|
primary: false,
|
|
label: 'Button',
|
|
backgroundColor: 'red'
|
|
}}>
|
|
{Template.bind({})}
|
|
</Story>
|
|
``` |