@atlaskit/calendar
Version:
An interactive calendar for date selection experiences.
14 lines (13 loc) • 408 B
TypeScript
import React from 'react';
import type { TabIndex } from '../../types';
import { type DateObj, type Week } from '../types';
interface WeekDaysProps {
weeks: Week[];
handleClickDay: (date: DateObj) => void;
monthsLong: string[];
shouldSetFocus: boolean;
tabIndex: TabIndex;
testId?: string;
}
declare const WeekDays: React.NamedExoticComponent<WeekDaysProps>;
export default WeekDays;