@fluentui/react-northstar
Version:
A themable React component library.
19 lines (18 loc) • 1 kB
TypeScript
import { ButtonProps, ButtonStylesProps } from '../Button/Button';
export declare type DatepickerCalendarHeaderActionProps = ButtonProps & {
/** What direction the action button should be pointing. */
direction?: 'previous' | 'next';
/** Button is disabled for action but still enabled for navigation. */
disabledNavigatableButton?: boolean;
};
export declare type DatepickerCalendarHeaderActionStylesProps = ButtonStylesProps;
export declare const datepickerCalendarHeaderActionClassName = "ui-datepicker__calendarheaderaction";
/**
* A DatepickerCalendarHeaderAction is used to display action button for DatepickerCalendarHeader.
*/
export declare const DatepickerCalendarHeaderAction: import("@fluentui/react-bindings").ComponentWithAs<"button", ButtonProps & {
/** What direction the action button should be pointing. */
direction?: 'previous' | 'next';
/** Button is disabled for action but still enabled for navigation. */
disabledNavigatableButton?: boolean;
}>;