9 lines
364 B
TypeScript
9 lines
364 B
TypeScript
import * as React from 'react';
|
|
import type { IDayInfo } from './CalendarDayGrid.base';
|
|
import type { ICalendarGridRowProps } from './CalendarGridRow';
|
|
export interface ICalendarGridDayCellProps extends ICalendarGridRowProps {
|
|
day: IDayInfo;
|
|
dayIndex: number;
|
|
}
|
|
export declare const CalendarGridDayCell: React.FunctionComponent<ICalendarGridDayCellProps>;
|