Calendar

Calendar is a component for displaying or selecting dates in a calendar.

March 2026
1234567
891011121314
15161718192021
22232425262728
2930311234

Usage

import { Calendar } from "@yamada-ui/react"
<Calendar.Root />

Change Size

March 2026
1234567
891011121314
15161718192021
22232425262728
2930311234
March 2026
1234567
891011121314
15161718192021
22232425262728
2930311234
March 2026
1234567
891011121314
15161718192021
22232425262728
2930311234
March 2026
1234567
891011121314
15161718192021
22232425262728
2930311234
March 2026
1234567
891011121314
15161718192021
22232425262728
2930311234

Change Color Scheme

March 2026
1234567
891011121314
15161718192021
22232425262728
2930311234
March 2026
1234567
891011121314
15161718192021
22232425262728
2930311234

Change Shape

March 2026
1234567
891011121314
15161718192021
22232425262728
2930311234
March 2026
1234567
891011121314
15161718192021
22232425262728
2930311234
March 2026
1234567
891011121314
15161718192021
22232425262728
2930311234

Change Format

To change the format, set the format object.

March 2026
1234567
891011121314
15161718192021
22232425262728
2930311234

Set Default Date

To set a default date, set defaultValue to a Date.

March 2026
1234567
891011121314
15161718192021
22232425262728
2930311234

Set Default Month

To set a default month, set defaultMonth to a Date.

October 2025
2829301234
567891011
12131415161718
19202122232425
2627282930311

Set Minimum Date

To set the minimum selectable date, set minDate to a Date.

March 2026
1234567
891011121314
15161718192021
22232425262728
2930311234

Set Maximum Date

To set the maximum selectable date, set maxDate to a Date.

March 2026
1234567
891011121314
15161718192021
22232425262728
2930311234

Disable

To disable the calendar, set disabled to true.

March 2026
1234567
891011121314
15161718192021
22232425262728
2930311234

Disable Today Highlighting

To disable highlighting of today's date, set today to false.

March 2026
1234567
891011121314
15161718192021
22232425262728
2930311234

Disable Specific Days of the Week

To disable specific days of the week, set excludeDate to a condition function.

March 2026
1234567
891011121314
15161718192021
22232425262728
2930311234

Allow Multiple Selection

To allow multiple date selection, set multiple to true.

March 2026
1234567
891011121314
15161718192021
22232425262728
2930311234

Set Maximum for Multiple Selection

To set the maximum number of selectable dates in multiple selection, set max to a number.

March 2026
1234567
891011121314
15161718192021
22232425262728
2930311234

Enable Range Selection

To enable range selection, set range to true.

March 2026
1234567
891011121314
15161718192021
22232425262728
2930311234

Change Start Day of Week

To change the start day of the week, set startDayOfWeek to "sunday" or "monday".

March 2026
1234567
891011121314
15161718192021
22232425262728
2930311234
March 2026
2324252627281
2345678
9101112131415
16171819202122
23242526272829
303112345

Change Weekend Days

To change which days are treated as weekends, set weekendDays to an array of days(numbers).

March 2026
1234567
891011121314
15161718192021
22232425262728
2930311234

Set Holidays

To set holidays, set holidays to an array of Dates.

March 2026
1234567
891011121314
15161718192021
22232425262728
2930311234

Hide Outside the Current Month

To hide dates outside the current month, set styles using dayProps.

March 2026
1234567
891011121314
15161718192021
22232425262728
2930311234

Customize Components

You can customize components to change the display.

2026/03
March 2026
1234567
891011121314
15161718192021
22232425262728
2930311234
March 2026
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
1
2
3
4

Control

March 2026
1234567
891011121314
15161718192021
22232425262728
2930311234

Props

Accessibility

Keyboard Navigation

KeyDescriptionState
ArrowUpMoves focus to the date above.-
ArrowDownMoves focus to the date below.-
ArrowLeftMoves focus to the date to the left. If it's the first date, moves to the last date of the previous month.-
ArrowRightMoves focus to the date to the right. If it's the last date, moves to the first date of the next month.-
HomeMoves focus to the first date in the same week.-
EndMoves focus to the last date in the same week.-
PageUpMoves focus to the date in the previous month.-
Shift + PageUpMoves focus to the date in the previous year.-
PageDownMoves focus to the date in the next month.-
Shift + PageDownMoves focus to the date in the next year.-
Space, EnterToggles the selection state of the focused date.-

ARIA Roles and Attributes

ComponentRoles and AttributesUsage
Calendar.YearSelectaria-labelSets "Choose the year".
Calendar.MonthSelectaria-labelSets "Choose the month".
Calendar.Controlrole="status"Indicates that it is a status.
aria-live="polite"Indicates that it may be updated outside of focus.
Calendar.Monthrole="grid"Indicates that it is a grid.
aria-labelSets the displayed month and year, like "February 2026".
aria-multiselectableSets "true" if multiple selection or range selection is enabled.
Calendar.PrevButtonaria-labelSets "Go to the previous month".
Calendar.NextButtonaria-labelSets "Go to the next month".
CalendarDayaria-labelSets the date, like "Thursday, February 5, 2026". If today, sets "Today, Thursday, February 5, 2026".
aria-disabledSets "true" if the date is disabled.
aria-selectedSets "true" if the date is selected.