hextastudio/ui needs your support to stay running 🫶 Help us
Date Picker
The Date Picker component lets users select a date.
Preview
Selected Date: None
Installation
tsx
import { useState } from "react";
import { Datepicker } from "@/components/hexta-ui/Datepicker";
export const Home = () => {
const [selectedDate, setSelectedDate] = useState<Date>();
const handleDateChange = (date: Date | undefined) => {
setSelectedDate(date);
};
Props Information
Prop Name
Prop Type
Default Value
Description
Prop Name | Prop Type | Default Value | Description |
---|