@awsui/components-react
Version:
On July 19th, 2022, we launched [Cloudscape Design System](https://cloudscape.design). Cloudscape is an evolution of AWS-UI. It consists of user interface guidelines, front-end components, design resources, and development tools for building intuitive, en
15 lines • 605 B
TypeScript
/// <reference types="react" />
import { DateRangePickerProps } from '../../interfaces';
interface CalendarHeaderProps {
baseDate: Date;
locale: string;
onChangePage: (n: number) => void;
previousPageLabel?: string;
nextPageLabel?: string;
isSingleGrid: boolean;
headingIdPrefix: string;
granularity?: DateRangePickerProps.Granularity;
}
export default function CalendarHeader({ baseDate, locale, onChangePage, previousPageLabel, nextPageLabel, isSingleGrid, headingIdPrefix, granularity, }: CalendarHeaderProps): JSX.Element;
export {};
//# sourceMappingURL=index.d.ts.map