I am currently utilizing the material-ui select-field component.
<SelectField
multiple={true}
hintText="Checkbox Filters"
dropDownMenuProps={{
iconButton:<ActionHome />,
}}
className="checkbox-com"
underlineStyle={{display:'none'}}
hintStyle={{bottom:'13px', overflow: 'hidden', whiteSpace: 'nowrap', textOverflow: 'ellipsis', width:
'calc(100% - 40px)', color: '#757575', fontWeight: 500}}
labelStyle={{top: 0, paddingRight: 40, height: 48, lineHeight: '48px'}}
iconStyle={{top: 2,right: 10, fill: '#757575', width: 44, height: 44}}
style={{maxWidth: '200px', minWidth: 200, width: 'auto', lineHeight: '22px', height: 48, fontSize:
14}}>
<List>
<ListItem
leftCheckbox={<Checkbox />}
primaryText="Project 1"
innerDivStyle={{fontSize: 14, paddingLeft: 60}}/>
<ListItem
leftCheckbox={<Checkbox />}
primaryText="Project 2"
innerDivStyle={{fontSize: 14, paddingLeft: 60}}/>
<ListItem
leftCheckbox={<Checkbox />}
primaryText="Project 3"
innerDivStyle={{fontSize: 14, paddingLeft: 60}}/>
</List>
</SelectField>
However, the display is not as expected.
I would like to achieve this appearance instead:
Please provide guidance on styling the dropdown menu accordingly