<DatePicker />
DatePicker
src/components/form-controls.tsx
Import
import { DatePicker } from "@ossrandom/design-system";
Examples
<Space size="sm">
<DatePicker />
<DatePicker
disabled
/>
</Space>
API
extends BaseProps
| Prop | Type |
|---|---|
value |
Date |
defaultValue |
Date |
min |
Date |
max |
Date |
format |
string |
placeholder |
string |
disabled |
boolean |
disabledDates |
(date: Date) => boolean; readonly onChange?: (date: Date | null) => void; |