36 lines
991 B
TypeScript
36 lines
991 B
TypeScript
import "react-calendar/dist/Calendar.css";
|
|
import "react-date-picker/dist/DatePicker.css";
|
|
import PrimitiveDatePicker from "react-date-picker/dist/entry.nostyle";
|
|
|
|
import classNames from "@calcom/lib/classNames";
|
|
|
|
import { FiCalendar } from "../../icon";
|
|
|
|
type Props = {
|
|
date: Date;
|
|
onDatesChange?: ((date: Date) => void) | undefined;
|
|
className?: string;
|
|
disabled?: boolean;
|
|
minDate?: Date;
|
|
};
|
|
|
|
const DatePicker = ({ minDate, disabled, date, onDatesChange, className }: Props) => {
|
|
return (
|
|
<PrimitiveDatePicker
|
|
className={classNames(
|
|
"focus:ring-primary-500 focus:border-primary-500 rounded-md border border-gray-300 p-1 pl-2 shadow-sm sm:text-sm",
|
|
className
|
|
)}
|
|
calendarClassName="rounded-md"
|
|
clearIcon={null}
|
|
calendarIcon={<FiCalendar className="h-5 w-5 rounded-md text-gray-500" />}
|
|
value={date}
|
|
minDate={minDate}
|
|
disabled={disabled}
|
|
onChange={onDatesChange}
|
|
/>
|
|
);
|
|
};
|
|
|
|
export default DatePicker;
|