Repository URL to install this package:
|
Version:
3.0.1 ▾
|
import { ReactNode } from 'react';
import { BaseButtonProps } from 'atoms/Button';
import { ListValueProps } from '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;
}