Calendar

DaisyUI

Calendar component wrapping the Cally web component calendar.

Standalone Calendar

A simple inline calendar with DaisyUI styling.

Date Picker

Click the input to open a popover calendar. Uses CSS anchor positioning.

Code Example
use rsxui::components::CallyCalendar;
use rsx_macros::rsx;
let html = rsx! {
    <CallyCalendar class="bg-base-100 border border-base-300 shadow-lg rounded-box">
        <svg aria-label="Previous" slot="previous" ...></svg>
        <svg aria-label="Next" slot="next" ...></svg>
        <calendar-month></calendar-month>
    </CallyCalendar>
};