skip to Main Content

Css – Style mui Autocomplete

I inherited a project with material ui, which I have never used before. I have the following in my code <FormControl fullWidth> <InputLabel className={className} htmlFor={id} error={error} > {label} </InputLabel> <Input className={className} id={id} value={value} onChange={(e) => { onChange(e.target.value) }} /> </FormControl>…

VIEW QUESTION

Reactjs – MUI – join Avatars with a dotted line

I have a Stack of Avatars, with text: <Stack> <span><Avatar sx={{ float:'left', width: 30, height: 30, margin: 1, backgroundColor: '#c00500' }} variant="square">C</Avatar>Today</span> <span><Avatar sx={{ float:'left', width: 30, height: 30, margin: 1, backgroundColor: '#05C000' }} variant="square">V</Avatar>Yesterday</span> <span><Avatar sx={{ float:'left', width: 30,…

VIEW QUESTION
Back To Top
Search