Repository URL to install this package:
|
Version:
2.1.16 ▾
|
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;
}