@project44-manifest/react
Version:
Manifest Design System react components
22 lines • 694 B
TypeScript
/// <reference types="react" />
import type { CalendarState, RangeCalendarState } from '@react-stately/calendar';
import type { AriaButtonProps } from '@react-types/button';
export interface CalendarHeaderProps {
/**
* Props passed to the next button
*/
nextButtonProps: AriaButtonProps;
/**
* Props passed to the previous button.
*/
prevButtonProps: AriaButtonProps;
/**
* The calendar state.
*/
state: CalendarState | RangeCalendarState;
}
export declare function CalendarHeader(props: CalendarHeaderProps): JSX.Element;
export declare namespace CalendarHeader {
var displayName: string;
}
//# sourceMappingURL=CalendarHeader.d.ts.map