@elacity-js/uikit
Version:
React / Material UI Design kit for Elacity project
12 lines (11 loc) • 352 B
TypeScript
import React from 'react';
import type { SxProps } from '@mui/system';
interface MenuPopoverProps {
open: boolean;
width?: number | 'auto';
onClose: () => void;
anchorEl?: any;
sx?: SxProps;
}
export default function MenuPopover({ children, sx, width, ...other }: React.PropsWithChildren<MenuPopoverProps>): JSX.Element;
export {};