UNPKG

@project44-manifest/react

Version:

Manifest Design System react components

23 lines 705 B
/// <reference types="react" /> import type { CalendarState, RangeCalendarState } from '@react-stately/calendar'; import type { CalendarDate } from '@internationalized/date'; export interface CalendarCellProps { /** * The current month to helpe determine out of range dates. */ currentMonth: CalendarDate; /** * The date that this cell represents. */ date: CalendarDate; /** * The calendar state. */ state: CalendarState | RangeCalendarState; } /** @private */ export declare function CalendarCell(props: CalendarCellProps): JSX.Element; export declare namespace CalendarCell { var displayName: string; } //# sourceMappingURL=CalendarCell.d.ts.map