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    
Size: Mime:
import * as React from 'react';
import { MenuItemProvideProps } from './typings';
/**
 * @todo typings
 */
declare const MenuItemContext: React.Context<{
    title: string;
    className: string;
    renderIcon(DEFAULT: string): "";
    onClick(DEFAULT: string): void;
}>;
declare const Provider: React.ProviderExoticComponent<React.ProviderProps<{
    title: string;
    className: string;
    renderIcon(DEFAULT: string): "";
    onClick(DEFAULT: string): void;
}>>, Consumer: React.ExoticComponent<React.ConsumerProps<{
    title: string;
    className: string;
    renderIcon(DEFAULT: string): "";
    onClick(DEFAULT: string): void;
}>>;
/**
 * @todo probably would make more sense for this to be for the whole sidebar...
 */
declare class MenuItemProvider extends React.Component<MenuItemProvideProps> {
    render(): JSX.Element;
}
export { Consumer, Provider, MenuItemProvider, MenuItemContext };