Utility
Terminal
█
date-picker-demo █
Loading preview... █
█
█
█
█
█
█
█
█
█
█
█
█
█
█
█Installation
$ pnpm dlx shadcn@latest add @termcn/opentui/date-picker
Usage
import { DatePicker } from "@/components/ui/date-picker";<DatePicker
label="Birth date"
value={new Date(2026, 0, 15)}
onChange={(date) => console.log("Selected:", date)}
onSubmit={(date) => console.log("Submitted:", date)}
/>API Reference
DatePicker
| Prop | Type | Default |
|---|---|---|
value | Date | - |
onChange | (date: Date) => void | - |
onSubmit | (date: Date) => void | - |
label | string | - |
minDate | Date | - |
maxDate | Date | - |
autoFocus | boolean | false |
id | string | - |