import type {Meta, StoryObj} from '@storybook/web-components'; import {ObcNotificationMessage} from './notification-message'; import './notification-message'; import '../notification-message-item/notification-message-item'; import '../alert-icon/alert-icon'; import {html} from 'lit'; const meta: Meta = { title: 'Application/Notification message', tags: ['autodocs'], component: 'obc-notification-message', args: {}, argTypes: {}, } satisfies Meta; export default meta; type Story = StoryObj; export const Primary: Story = { render: () => html`
This is a message
No active alerts
`, }; export const Empty: Story = { render: () => html`
No active alerts
`, }; export const Large: Story = { render: () => html`
This is a message
This is a message
No active alerts
`, }; export const LargeSingleMessage: Story = { render: () => html`
This is a message
No active alerts
`, };