UNPKG

zaman

Version:

React component that helps you to makes simple Farsi/Jalali/Shamsi date picker. It also has range date picker you can select multiple days in multiple months.

10 lines (9 loc) 286 B
import type React from 'react'; import type { Positions } from '../../types'; export interface RenderCalendarProps { showCalendar: boolean; toggleOpen: () => void; children: React.ReactNode; destinationRef: React.RefObject<HTMLInputElement>; position?: Positions; }