Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/packages / features / Navigation / Menu / _MenuDropdown / MenuDropDown.d.ts
Size: Mime:
import React from 'react';
import { NO_OP } from 'exotic';
import { MenuDropdownProps } from './typings';
declare class MenuDropdown extends React.Component<MenuDropdownProps> {
    static defaultProps: {
        children: never[];
        title: string;
        isTouchEnabled: boolean;
        onClick: typeof NO_OP;
        icon: null;
    };
    toggle: () => void;
    show: (event?: any) => void;
    hide: (event?: any) => void;
    render(): JSX.Element;
}
export default MenuDropdown;