I have an input field that currently takes in type=number, however this does not allow for decimal numbers, i do need to allow the user to have decimal input but i cant seem to get it working, would regex possibly be the solution to this problem as i would need some sort of validation.
<FormControl fullWidth style={{ width: '50%' }}>
    <InputLabel htmlFor="estimatedValue">Estimated Value</InputLabel>
    <Input
        type="number"
        id="estimatedValue"
        startAdornment={<InputAdornment position="start">£</InputAdornment>}
    />
</FormControl>
 
     
    