# Booking Calendar

An accessible month grid with disabled, available, selected, and keyboard-navigation states.

## Installation

```bash
npx shadcn@latest add https://amro-ui.vercel.app/r/booking-calendar.json
```

[Registry JSON](https://amro-ui.vercel.app/r/booking-calendar.json)

## Preview

```tsx
import { BookingCalendar } from "@amro-ui/react";

export function Preview() {
  return (
    <div className="grid min-h-72 w-full place-items-center rounded-xl border bg-background p-6 sm:p-10">
      <BookingCalendar />
    </div>
  );
}
```


## Source

### ui/booking-calendar.tsx

```tsx
"use client";

import "@/components/amro/amro-ui.css";

export { BookingCalendar } from "@/components/amro/components/signature-flows";
export type { BookingCalendarProps } from "@/components/amro/components/signature-flows";
```



## Usage

An accessible month grid with disabled, available, selected, and keyboard-navigation states.

### Package

```tsx
import { BookingCalendar } from "@amro-ui/react";

<BookingCalendar />
```

### shadcn copy

```tsx
import { BookingCalendar } from "@/components/ui/booking-calendar";

<BookingCalendar />
```

