@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
21 lines • 534 B
TypeScript
import { CalendarProps } from '../../../calendar/interfaces';
interface CalendarHeaderProps extends Pick<CalendarProps, 'granularity'> {
baseDate: Date;
locale: string;
onChangePage: (n: number) => void;
previousPageLabel?: string;
nextPageLabel?: string;
isSingleGrid: boolean;
headingIdPrefix: string;
}
export default function CalendarHeader({
baseDate,
locale,
onChangePage,
previousPageLabel,
nextPageLabel,
isSingleGrid,
headingIdPrefix,
granularity
}: CalendarHeaderProps): JSX.Element;
export {};