import type {Meta, StoryObj} from '@storybook/web-components'; import {ObcVendorButton} from './vendor-button'; import './vendor-button'; import {html} from 'lit'; const meta: Meta = { title: 'Button/Vendor button', tags: ['autodocs'], component: 'obc-vendor-button', args: { imageSrc: 'https://openbridge-demo.web.app/companylogo-day.png', }, decorators: [(story) => html`
${story()}
`], } satisfies Meta; export default meta; type Story = StoryObj; export const Primary: Story = {};