I have this textfield
<TextField
error={!!errors.imageLink}
helperText={errors.imageLink}
FormHelperTextProps={{ variant: "standard" }}
placeholder="Banner Link"
size="small"
className={classNames([
classes.textField,
classes.marginTextInput,
])}
value={imageLink || ""}
onChange={(e) => this.handleChange(e, "imageLink")}
variant="outlined"
/>
i want to mask an url implementation, like user have to first type http or https, then after that :// auto applies then the rest of the link, how can I achieve this.