UNPKG

@guruhotel/aura-ui

Version:

⚛️ React UI library by GuruHotel

11 lines (10 loc) 506 B
/// <reference types="react" /> import { AriaCalendarGridProps } from "@react-aria/calendar"; import { CalendarStateOptions } from "@react-stately/calendar"; import { CalendarStates } from "./calendar.types"; declare const HorizontalCalendar: ({ state, leftIcon, rightIcon, ...props }: Partial<CalendarStateOptions> & AriaCalendarGridProps & { state: CalendarStates; leftIcon?: JSX.Element | undefined; rightIcon?: JSX.Element | undefined; }) => JSX.Element; export default HorizontalCalendar;