import { Story, Meta } from '@storybook/react' import { Stake, Wrap, Wallet } from '@lidofinance/icons' import MainMenu from './MainMenu' import MainMenuItem from './MainManuItem' export default { component: MainMenu, title: 'Layout/MainMenu', args: { active: 'stake', }, argTypes: { active: { name: 'Active link', control: 'select', options: ['stake', 'wrap', 'wallet'], }, }, } as Meta export const Basic: Story<{ active: 'stake' | 'wrap' | 'wallet' }> = ({ active, }) => ( }> Stake }> Wrap }> Wallet )