Calendars

CalendarValue
gregoriangregorian
solar hijripersian
islamic hijriarabic
indianindian

Locales

LanguageValue
englishen
farsifa
arabicar
hindihi

Descriptions

As you can see in the examples below, you can use any of these properties, either in DatePicker or Calendar:

Default Calendar

<Calendar /> 

Default DatePicker

<DatePicker /> 

Persian calendar with Farsi locale

<Calendar
  calendar="persian"
  locale="fa"
/> 

Persian DatePicker

The default calendarPosition is bottom-left, so on pages with a right to left direction, you can set the calendarPosition to bottom-right, for getting better results.

<div style={{ direction: "rtl" }}>
  <DatePicker
    calendar="persian"
    locale="fa"
    calendarPosition="bottom-right"
  />
</div>

Arabic calendar with Arabic locale

<Calendar
  calendar="arabic"
  locale="ar"
/> 

Indian calendar with Indian locale

<Calendar
  calendar="indian"
  locale="hi"
/> 

Persian datepicker with English locale

<DatePicker
  calendar="persian"
  locale="en"
/>