This is the latest docs update, but there are missing components and blocks. If you wish to see the complete version, you can check it out at old docs.

Components

Date Picker

A calendar-based date picker component built with React DayPicker and Popover.

Calendar Date Picker Component

Selected Date Range:

Thu Jan 01 2026 - Thu Jun 11 2026

Installation

NPM packages are currently unstable and may cause issues. Use it at your own risk.
npm install @mijn-ui/react-date-picker

Usage

import { CalendarDatePicker } from "@mijn-ui/react"
const [selectedDateRange, setSelectedDateRange] = useState({
  from: new Date(new Date().getFullYear(), 0, 1),
  to: new Date(),
})
 
<CalendarDatePicker
  
  date={selectedDateRange}
  onDateSelect={setSelectedDateRange}
/>

On this page