Home Calendar

The Calendar component allows users to select dates through an interactive calendar interface. It’s useful for date pickers, scheduling, and any scenario where choosing a date is required.

Installation

npm
npx phpxui add Calendar

Usage

use Lib\PHPXUI\Calendar
const [date, setDate] = pp.state(new Date());

<Calendar
  mode="single"
  selected="date"
  onSelect="setDate"
  class="rounded-lg border"
/>