Range Picker

Month grid with a tinted range band, solid start and end chips, and a nights chip in the header.

June 20266 nights
MTWTFSS
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

Requires shadcn/ui initialized. Run npx shadcn@latest init if you haven't.

Import & use
import { Calendar5 } from "@/components/beste/piece/calendar5";

<Calendar5
  month="June"
  year="2026"
  rangeStart={12}
  rangeEnd={18}
  firstDayOffset={0}
  daysInMonth={30}
  weekdays={[
    "M",
    "T",
    "W",
    "T",
    "F",
    "S",
    "S"
  ]}
  nightsLabel="nights"
/>