import React from 'react' import { type Meta, type StoryObj } from '@storybook/react' import { MultiActionTile } from '../index' const meta = { title: 'Components/Tiles/MultiActionTile (Deprecated)', component: MultiActionTile, args: { title: 'Title', metadata: 'Side A', primaryAction: { label: 'Take Action!', }, }, } satisfies Meta export default meta type Story = StoryObj export const Playground: Story = { parameters: { docs: { canvas: { sourceState: 'shown', }, }, }, } export const Variants: Story = { render: (args) => ( <> ), decorators: [ (Story) => (
), ], } export const Information: Story = { args: { information: 'Side B', }, } export const SecondaryAction: Story = { args: { secondaryAction: { label: 'Nevermind', }, }, }