import type { Meta, Story } from '@storybook/react'; import { ButtonLink } from '../button'; import { VegaLogo } from '../vega-logo'; import { Nav } from './nav'; export default { component: Nav, title: 'Nav', } as Meta; const Template: Story = ({ icon, title, titleContent }) => (
); const props = { icon: , title: 'Title', titleContent:
Content next to title
, }; export const Default = Template.bind({}); Default.args = { ...props, };