UNPKG

@material-ui/core

Version:

React components that implement Google's Material Design.

17 lines (12 loc) 455 B
import * as React from 'react'; import { StandardProps } from '..'; import { ListProps, ListClassKey } from '../List'; export interface MenuListProps extends StandardProps<ListProps, MenuListClassKey> { autoFocus?: boolean; autoFocusItem?: boolean; disableListWrap?: boolean; variant?: 'menu' | 'selectedMenu'; } export type MenuListClassKey = ListClassKey; declare const MenuList: React.ComponentType<MenuListProps>; export default MenuList;