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 { ReactNode } from 'react';
import { BaseButtonProps } from '@skava/ui/dist/components/atoms/Button';
import { ListValueProps } from '@skava/ui/dist/components/molecules/List/typings';
export interface NavigationListRenderProp {
    (props: NavigationListProps): ReactNode;
}
export declare type NavigationButtonDataType = ListValueProps;
export interface NavigationListProps extends BaseButtonProps {
    className?: string;
    list?: NavigationButtonDataType;
    children?: ReactNode;
    /**
     * renderProps
     */
    renderItem?: NavigationListRenderProp;
    renderList?: NavigationListRenderProp;
    renderWrapper?: NavigationListRenderProp;
}