···1212 FieldError,
1313} from "react-aria-components";
14141515-import Calendar, { CalendarProps } from "../calendar";
1515+import { Calendar, CalendarProps } from "../calendar";
1616import { SizeContext } from "../context";
1717import { DateField } from "../date-field";
1818import { IconButton } from "../icon-button";
···11+---
22+title: Date Range Picker
33+description: A date range picker combines date inputs and a RangeCalendar popover to allow users to enter or select a date range.
44+---
55+66+import { PropDocs } from '../../lib/PropDocs'
77+import { Example } from '../../lib/Example'
88+import { Basic } from '../../examples/date-range-picker/basic'
99+1010+<Example src={Basic} />
1111+1212+## Installation
1313+1414+Run the following command to add the date range picker component to your project.
1515+1616+```bash
1717+pnpm hip install date-range-picker
1818+```
1919+2020+## Props
2121+2222+This component is built using the [React Aria DateRangePicker](https://react-spectrum.adobe.com/react-aria/DateRangePicker.html).
2323+2424+<PropDocs components={["DateRangePicker"]} />
2525+2626+## Related Components
2727+2828+- [DatePicker](/docs/components/date-picker) - For single date selection
2929+- [RangeCalendar](/docs/components/range-calendar) - For standalone range calendar display
3030+- [DateField](/docs/components/date-field) - For date input without popover
3131+- [TimeField](/docs/components/time-field) - For time input
3232+- [Label](/docs/components/label) - For form labels and descriptions
3333+
···1212 FieldError,
1313} from "react-aria-components";
14141515-import Calendar, { CalendarProps } from "../calendar";
1515+import { Calendar, CalendarProps } from "../calendar";
1616import { SizeContext } from "../context";
1717import { DateField } from "../date-field";
1818import { IconButton } from "../icon-button";