source: src/components/custom-popover/types.ts

main
Last change on this file was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago

add customer

  • Property mode set to 100644
File size: 545 bytes
Line 
1// @mui
2import { PopoverProps } from '@mui/material/Popover';
3
4// ----------------------------------------------------------------------
5
6export type MenuPopoverArrowValue =
7 | 'top-left'
8 | 'top-center'
9 | 'top-right'
10 | 'bottom-left'
11 | 'bottom-center'
12 | 'bottom-right'
13 | 'left-top'
14 | 'left-center'
15 | 'left-bottom'
16 | 'right-top'
17 | 'right-center'
18 | 'right-bottom';
19
20export interface MenuPopoverProps extends Omit<PopoverProps, 'open'> {
21 open: HTMLElement | null;
22 arrow?: MenuPopoverArrowValue;
23 hiddenArrow?: boolean;
24}
Note: See TracBrowser for help on using the repository browser.