interface CalendarMonthInlineProps {
    ariaLabelledby?: string;
    component?: keyof IntrinsicElements;
    title?: ReactNode;
}

Properties

ariaLabelledby?: string

Id of the accessible label of the calendar month. Recommended to map to the title.

component?: keyof IntrinsicElements

Component wrapping the calendar month when used inline. Recommended to be 'article'.

title?: ReactNode

Title of the calendar rendered above the inline calendar month. Recommended to be a 'title' component.