import type { Meta, StoryObj } from '@storybook/react'; import { BinaryLinkButton } from '../app/components/BinaryLinkButton'; const meta: Meta = { title: 'Components/BinaryLinkButton', component: BinaryLinkButton, tags: ['autodocs'], args: { active: 'left', states: { left: { label: 'Left', url: '#', }, right: { label: 'Right', url: '#', }, }, render: undefined, }, }; export default meta; type Story = StoryObj; export const Normal: Story = { args: { active: 'left', states: { left: { label: 'Left', url: '#', }, right: { label: 'Right', url: '#', }, }, render(sideProps) { return {sideProps.label}; }, }, };