```ts // CSF 2 import type { Meta, Story } from '@storybook/web-components'; import { html } from 'lit'; export default { title: 'components/Button', component: 'demo-button', } as Meta; export const Primary: Story = ({ primary }) => html``; Primary.args = { primary: true, }; ```