UNPKG

@guruhotel/aura-ui

Version:

⚛️ React UI library by GuruHotel

8 lines (7 loc) 554 B
/// <reference types="react" /> import { AriaCalendarGridProps } from "@react-aria/calendar"; import { VariantProps } from "../theme"; import { TCalendarProps } from "./calendar.types"; import { CalendarContainer } from "./calendar.styles"; declare function Calendar({ rounded, as, showHorizontalTitle, colorScheme, monthDateFormat, withSelectors, tooltip, dateUnavailableStyle, size, visibleDuration, prevIcon, nextIcon, ...props }: TCalendarProps & VariantProps<typeof CalendarContainer> & AriaCalendarGridProps): JSX.Element; export default Calendar;