import React from 'react'; import { Meta, Story } from '@storybook/react'; import { DropDown, DropDownProps } from './DropDown'; import { DropDownItemData as listItems } from './DropDownData'; import { Button } from '../Button'; import { HeroIcon } from '../HeroIcon'; export default { title: 'Components/Drop Down', component: DropDown, argTypes: {}, parameters: { controls: { expanded: true }, }, } as Meta; const DefaultTemplate: Story = args => ( {args.children} ); export const Default = DefaultTemplate.bind({}); Default.args = { buttonText: 'Basic Drop Down', }; export const WithButton = DefaultTemplate.bind({}); WithButton.args = { children: