OddApp Design
Raw shadcn — not wrapped in @oddapp/ui yet.

Import directly: @/components/ui/calendar. OddApp tokens are applied via globals.css @theme. All token rules still apply.

Calendar

Full month calendar for date selection.

Default

Import and render this component in your app using the snippet below.

import { Calendar } from '@/components/ui/calendar'

<Calendar
  mode="single"
  selected={date}
  onSelect={setDate}
/>