import { AddIcon, ChevronDownIcon } from '@chakra-ui/icons'; import { Button, ButtonGroup, IconButton, Menu, MenuButton, MenuItem, MenuList, } from '@chakra-ui/react'; import style from './EventListMenu.module.css'; export default function EventListMenu(props) { const { eventsHandler } = props; const buttonProps = { size: 'sm', variant: 'outline', }; return (
Upload Excel Upload CSV Download Excel Download CSV } colorScheme='blue' onClick={() => eventsHandler('add', { type: 'event', order: 0 })} />
); }