@fluentui/react
Version:
Reusable React components for building web experiences.
9 lines (8 loc) • 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>;