Search code examples
reactjsmaterial-uimui-x

Mui / Material UI 5 : How to remove the open next view / open previous view buttons from StaticTimePicker?


how do I remove the open next view and open previous view arrow buttons from the MUI StaticTimePicker?

enter image description here


Solution

  • You can use slotProps property.

    For example:

    <StaticTimePicker
        slotProps={
          {
            nextIconButton: { sx: { display: 'none' } },
            previousIconButton: { sx: { display: 'none' } }
          }
        }
        defaultValue={dayjs("2022-04-17T15:30")}
    />