Calendar
Base date picker component.
#
Documentation
#
#
Usage
#
Su | Mo | Tu | We | Th | Fr | Sa |
---|---|---|---|---|---|---|
import { Calendar } from "@optiaxiom/react/unstable";
export function App() {
return <Calendar border="1" p="16" rounded="lg" />;
}
#
Props
#
#
Calendar
#
Supports all Box props in addition to its own. Renders a <div>
element.
Prop |
---|
asChild Change the default rendered element for the one passed as a child, merging their props and behavior. Read the Composition guide for more details.
|
className
|
defaultValue The initial selected value in uncontrolled mode.
|
holiday Apply the
|
max The latest month to end the month navigation.
|
min The earliest month to start the month navigation.
|
mode
Default: |
onHeightChange
|
onValueChange Handler that is called when the selected value changes.
|
step
|
today The today’s date. Default is the current date.
|
type
Default: |
value The selected value in controlled mode.
|
weekend Apply the
|
#
Changelog
#
#
0.12.1
#
- Added component