Installation
Usage
import { CalendarLume } from "@/components/ruixen/calendar-lume";
export default function App() {
const [date, setDate] = useState<string>();
return <CalendarLume value={date} onChange={setDate} />;
}Props
| Prop | Type | Default | Description |
|---|---|---|---|
value | string | - | ISO date string "YYYY-MM-DD" |
onChange | (date: string) => void | - | Fires with ISO date string on day selection |
sound | boolean | true | Enable tick sound |

