import { ButtonProps, IconButton, Menu, MenuButton, MenuList, } from '@chakra-ui/react' import { MoreVerticalIcon } from 'assets/icons' import { ReactNode } from 'react' type Props = { children: ReactNode } & ButtonProps export const MoreButton = ({ children, ...props }: Props) => { return (
) }