UNPKG

@commercetools-uikit/calendar-utils

Version:

Utilities to work with values for a calendar.

19 lines (18 loc) 564 B
import { Component, ReactNode } from 'react'; type TCalendarMenu = { children: ReactNode; hasFooter?: boolean; hasError?: boolean; hasWarning?: boolean; footer?: ReactNode; /** * Indicates the appearance of the calendar menu. * Filter appearance removes box shadows and positioning for inline display. */ appearance?: 'default' | 'filter'; }; export default class CalendarMenu extends Component<TCalendarMenu> { static displayName: string; render(): import("@emotion/react/jsx-runtime").JSX.Element; } export {};