I'm having trouble modifying my SelectionForm. I need to update the color of the placeHolder image from red to a different color, but I can't find any properties or props on the material ui Docs to do so. Can someone assist me with this?
https://i.sstatic.net/I7O2m.png
Here is the code I am using:
<div className="row">
{
Object.keys(FILTRO_AGENZIA_MAPPER).map((key5: string, w: number) =>
<div className="col-sm-2" key={key5 + w} style={{display: 'inline'}}>
<Field name={FILTRO_AGENZIA_MAPPER[key5] || key5}
component={renderSelectField}
key={key5 + w}
label={FILTRO_AGENZIA_MAPPER[key5]}>
{
Object.keys(FILTRO_AGENZIA_VALUES).map((key6: string, y: number) =>
<MenuItem key={key6 + y} value={FILTRO_AGENZIA_VALUES[key6] || key6}>
{FILTRO_AGENZIA_VALUES[key6] || key6}
</MenuItem>)
}
</Field>
</div>
)}
</div>
export const renderSelectField: React.FunctionComponent = ({label, children}: TextFieldProps): any => {
return (
<FormControl fullWidth={true}>
<InputLabel>{label}</InputLabel>
<Select>
{children}
</Select>
</FormControl>
)
}