import type {Meta, StoryObj} from '@storybook/web-components'; import {ObcBadge} from './badge'; import './badge'; import {html} from 'lit'; import '../../icons/icon-placeholder'; const meta: Meta = { title: 'Automation/Badge', tags: ['autodocs'], component: 'obc-badge', args: { number: 9, }, } satisfies Meta; export default meta; type Story = StoryObj; export const Regular: Story = { render(args) { return html` `; }, }; export const Large: Story = { render(args) { return html` `; }, }; export const NoNumber: Story = { render() { return html` `; }, }; export const NoNumberLarge: Story = { render() { return html` `; }, }; export const Alarm: Story = { render(args) { return html` `; }, }; export const Warning: Story = { render(args) { return html` `; }, }; export const Caution: Story = { render(args) { return html` `; }, }; export const Running: Story = { render(args) { return html` `; }, }; export const Notification: Story = { render(args) { return html` `; }, }; export const Enhance: Story = { render(args) { return html` `; }, }; export const Flat: Story = { render(args) { return html` `; }, }; export const Empty: Story = { render(args) { return html` `; }, }; export const Automation: Story = { render() { return html` `; }, };