@yamada-ui/calendar
Version:
Yamada UI calendar component
14 lines (11 loc) • 436 B
text/typescript
import { RequiredPropGetter, HTMLProps, PropGetter } from '@yamada-ui/core';
declare const useMonthList: () => {
label: string;
rangeMonths: string[];
getButtonProps: RequiredPropGetter<{
value: number;
} & HTMLProps<"button">, HTMLProps<"button">>;
getGridProps: PropGetter<"div", undefined>;
};
type UseMonthListReturn = ReturnType<typeof useMonthList>;
export { type UseMonthListReturn, useMonthList };