Skip to main content
Version: 10.0.0-next.6

Ethiopic Calendar

DayPicker supports the Ethiopic calendar via a dedicated build.

Install the React package and the Ethiopic calendar package:

npm install @daypicker/react@next @daypicker/ethiopic@next

Import DayPicker from @daypicker/ethiopic to display Ethiopic months, weekdays, and numerals while keeping the usual DayPicker API.

import { DayPicker } from "@daypicker/ethiopic";

Basic usage

By default, the locale is amET with Ge'ez numerals.

import { DayPicker } from "@daypicker/ethiopic";

<DayPicker />;

If you need the locale object directly, import amET from @daypicker/ethiopic:

import { amET } from "@daypicker/ethiopic";

Latin numerals

Switch to Latin numerals:

import { DayPicker } from "@daypicker/ethiopic";

<DayPicker numerals="latn" />;