Date Picker
A date picker component with range and presets.
Loading...
"use client"
import * as React from "react"About
The DatePicker is built using a composition of the <Popover /> and the <Calendar /> components.
Installation
pnpmnpmyarnbun
Usage
import { DatePicker, DateRangePicker } from "@/components/ui/date-picker"const [date, setDate] = React.useState<Date>()
return <DatePicker date={date} onDateChange={setDate} />Examples
Date Picker
Loading...
"use client"
import * as React from "react"Date Range Picker
Loading...
"use client"
import * as React from "react"Date of Birth
Use dropdown navigation to easily select a birth date with year/month selectors.
Loading...
"use client"
import * as React from "react"With Presets
You can add presets for quick date selection.
Loading...
"use client"
import * as React from "react"