UNPKG

rsuite

Version:

A suite of react components

10 lines (9 loc) 347 B
import { RsRefForwardingComponent, WithAsProps } from '../@types/common'; export interface MonthDropdownItemProps extends WithAsProps { month?: number; year?: number; active?: boolean; disabled?: boolean; } declare const MonthDropdownItem: RsRefForwardingComponent<'div', MonthDropdownItemProps>; export default MonthDropdownItem;