import type {Meta, StoryObj} from '@storybook/web-components'; import {ObcNotificationButton} from './notification-button'; import '../../icons/icon-sound-muted-fill'; import './notification-button'; import {html} from 'lit'; // More on how to set up stories at: https://storybook.js.org/docs/web-components/writing-stories/introduction const meta: Meta = { title: 'Button/Notification button', tags: ['autodocs'], component: 'obc-notification-button', } satisfies Meta; export default meta; type Story = StoryObj; // More on writing stories with args: https://storybook.js.org/docs/web-components/writing-stories/args export const Ack: Story = { render: () => html` ACK `, }; export const Mute: Story = { render: () => html` `, }; export const MuteDisabled: Story = { render: () => html` `, }; export const MuteIndent: Story = { render: () => html` `, }; export const MuteOpenRight: Story = { render: () => html` `, }; export const CornerLeft: Story = { render: () => html` `, }; export const CornerRight: Story = { render: () => html` `, };