razor-shared-library
Version:
12 lines (11 loc) • 474 B
TypeScript
import { ReactElement, ReactNode } from 'react';
import { BoxProps } from '@mui/material/Box';
import { MenuItems } from '../../../../../../../../src/components/navigation/menu/types';
interface Props extends Omit<BoxProps, 'position'> {
items: MenuItems[];
selected?: string;
anchor: ReactNode;
position?: 'bottom-start' | 'bottom-end';
}
export declare const MenuCustom: ({ items, selected, anchor, position, ...props }: Props) => ReactElement;
export {};