@openmrs/esm-styleguide
Version:
The styleguide for OpenMRS SPA
11 lines (10 loc) • 442 B
TypeScript
import React from 'react';
/**
* Custom component to render the month and year on the DatePicker and provide the standard Carbon
* UI to change them.
*
* Should work with any calendar system supported by the @internationalized/date package.
*/
export declare const MonthYear: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLSpanElement> & {
children?: React.ReactNode | undefined;
} & React.RefAttributes<HTMLSpanElement>>;