import { Menu, Transition } from '@headlessui/react' import { Fragment, PropsWithChildren, FC } from 'react' import { CgProfile } from 'react-icons/cg' import { GrMoreVertical, GrSettingsOption } from 'react-icons/gr' const btnClassName = 'grIcon h-5 w-5' export const MenuList: FC< PropsWithChildren<{ more?: boolean; settings?: boolean }> > = ({ children, more, settings }) => { return (
{settings ? ( ) : more ? ( ) : ( )}
{children}
) }