AbdulElahGwaith's picture
Upload folder using huggingface_hub
cf86710 verified
---
title: Ethiopic Calendar
---
DayPicker supports the [Ethiopic calendar](https://en.wikipedia.org/wiki/Ethiopian_calendar) via a dedicated build.
Import `DayPicker` from `react-day-picker/ethiopic` to display Ethiopic months, weekdays, and numerals while keeping the usual DayPicker API.
```tsx
import { DayPicker } from "react-day-picker/ethiopic";
```
### Basic usage
By default, the locale is `amET` with Ge'ez numerals.
```tsx
import { DayPicker } from "react-day-picker/ethiopic";
<DayPicker />;
```
<BrowserWindow sourceUrl="https://github.com/gpbl/react-day-picker/blob/main/examples/Ethiopic.tsx">
<Examples.Ethiopic />
</BrowserWindow>
### Latin numerals
Switch to Latin numerals:
```tsx
import { DayPicker } from "react-day-picker/ethiopic";
<DayPicker numerals="latn" />;
```
<BrowserWindow sourceUrl="https://github.com/gpbl/react-day-picker/blob/main/examples/EthiopicLatin.tsx">
<Examples.EthiopicLatin />
</BrowserWindow>