Repository URL to install this package:
|
Version:
0.0.15 ▾
|
/// <reference types="react" />
import { MenuItemType } from '../typings';
export interface MenuDropdownProps {
children: any[];
title?: string;
isTouchEnabled: boolean;
onClick?: (...args: any) => void;
icon?: React.ReactNode;
className?: string;
item: MenuItemType;
}