Calendar06() — ui Function Reference
Architecture documentation for the Calendar06() function in calendar-06.tsx from the ui codebase.
Entity Profile
Dependency Diagram
graph TD b3ba1c61_68c9_06f3_f59f_fdc6e9844a59["Calendar06()"] 80c461b5_0192_4e84_f64f_8a10a9adca75["calendar-06.tsx"] b3ba1c61_68c9_06f3_f59f_fdc6e9844a59 -->|defined in| 80c461b5_0192_4e84_f64f_8a10a9adca75 style b3ba1c61_68c9_06f3_f59f_fdc6e9844a59 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
deprecated/www/__registry__/new-york/blocks/calendar-06.tsx lines 8–30
export default function Calendar06() {
const [dateRange, setDateRange] = React.useState<DateRange | undefined>({
from: new Date(2025, 5, 12),
to: new Date(2025, 5, 26),
})
return (
<div className="flex min-w-0 flex-col gap-2">
<Calendar
mode="range"
defaultMonth={dateRange?.from}
selected={dateRange}
onSelect={setDateRange}
numberOfMonths={1}
min={5}
className="rounded-lg border shadow-sm"
/>
<div className="text-muted-foreground text-center text-xs">
A minimum of 5 days is required
</div>
</div>
)
}
Domain
Subdomains
Source
Frequently Asked Questions
What does Calendar06() do?
Calendar06() is a function in the ui codebase, defined in deprecated/www/__registry__/new-york/blocks/calendar-06.tsx.
Where is Calendar06() defined?
Calendar06() is defined in deprecated/www/__registry__/new-york/blocks/calendar-06.tsx at line 8.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free