import React from 'react'
import { action } from '@storybook/addon-actions'
import { Icon } from '~components/Icon'
import { MenuItem, MenuList } from '..'
export const exampleActionButtonPropsButton = {
label: 'Edit Survey',
onClick: action('clicked'),
}
export const exampleActionButtonPropsAnchor = {
label: 'Edit Survey',
href: '//example.com',
}
export const exampleDropdownContentEnabled = (
}
label="Menu Item 1"
onClick={action('clicked')}
/>
} label="Menu Item 2" />
)
export const exampleDropdownContentOneDisabled = (
} label="Menu Item 1" disabled />
} label="Menu Item 2" />
)