import { useState } from "react"; import { AdapterDayjs } from "@mui/x-date-pickers/AdapterDayjs"; import { LocalizationProvider, TimePicker } from "@mui/x-date-pickers"; import { handleTwoLength } from "@/helper"; function TimePickerInput({ changeData, handleDisableHours, name, data }) { return (
handleDisableHours(e, name)} onChange={(e) => { const hours = e.$H; const minute = e.$m; const newValue = `${handleTwoLength(hours)}:${handleTwoLength( minute )}`; // setValue(newValue); changeData(newValue, name); }} sx={{ "& .MuiFormLabel-root": { top: "-4px !important", }, "& .MuiInputBase-input": { padding: "12.5px 14px" }, "& .MuiOutlinedInput-notchedOutline": { border: "1px solid #D7D7D7 !important", }, "& .MuiInputBase-root": { borderRadius: "8px !important", }, ".Mui-focused": { "& .MuiOutlinedInput-notchedOutline": { border: "1px solid #5559CE !important", transition: "0.5s all", }, }, "& .muirtl-jv54yp-MuiList-root-MuiMultiSectionDigitalClockSection-root::after": { display: "none !important", }, }} />

{data[name]}

); } export default TimePickerInput;