storybook/docs/snippets/svelte/component-story-with-accessibility.mdx.mdx
2021-11-02 19:48:55 +00:00

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>
```