I am trying to change this red border left colour into a stripped colour. Similar to this below. However within the borderLeftColor property I cannot achieve this effect.
Here is my current code
<TextField
name="title"
label="Enter Something"
id="title"
variant="outlined"
className={styles.banner}
/>
banner: {
'& .MuiOutlinedInput-root .MuiOutlinedInput-notchedOutline': {
borderLeftColor: 'red',
borderLeftWidth: '6px',
},
},

