```ts // Button.stories.ts import type { Meta, StoryObj } from '@storybook/web-components'; const meta: Meta = { title: 'Accessibility testing', component: 'custom-button', argTypes: { backgroundColor: { control: 'color' }, }, }; export default meta; type Story = StoryObj; // This is an accessible story export const Accessible: Story = { args: { primary: false, label: 'Button', }, }; // This is not export const Inaccessible: Story = { args: { ...Accessible.args, backgroundColor: 'red', }, }; ```