Mark W
Mark W

Reputation: 67

Material-UI DateRangerPicker remove dd/mm/yyyy

does anyone know how to remove the dd/mm/yyyy from this control, not just the text but the space it takes?

enter image description here

Upvotes: 0

Views: 518

Answers (1)

ZealousWeb
ZealousWeb

Reputation: 1751

 Inside your TextField add helperText as empty String.

 <TextField {...startProps} variant="standard" helperText=""/>
 <Box sx={{ mx: 2 }}> to </Box>
 <TextField {...endProps} variant="standard" helperText=""/>

Upvotes: 1

Related Questions