import type {Meta, StoryObj} from '@storybook/web-components'; import {ObcAlertIcon, AlertIconNames} from './alert-icon'; import './alert-icon'; import {html} from 'lit'; const meta: Meta = { title: 'Alert/Icon', tags: ['autodocs'], component: 'obc-alert-icon', args: { name: 'alarm-unack', }, argTypes: { name: { options: AlertIconNames, control: {type: 'radio'}, }, }, render: (args) => html`
`, } satisfies Meta; export default meta; type Story = StoryObj; export const Primary: Story = {};