@activecollab/components
Version:
ActiveCollab Components
12 lines • 441 B
TypeScript
import { FC } from "react";
import { CaptionProps } from "react-day-picker";
interface ICustomNavBarElementProps extends CaptionProps {
showMonthPicker: boolean;
onChangeDirection?: (direction: boolean) => void;
onMonthChange?: (month: Date) => void;
onClick?: () => void;
month: Date;
}
export declare const CustomNavBarElement: FC<ICustomNavBarElementProps>;
export {};
//# sourceMappingURL=CustomNavBarElement.d.ts.map