Is there a way to remove the border from a TextField component?
<Box display="flex" alignItems="center" border="1px solid #ccc" borderRadius="4px" paddingLeft="10px">
<Typography variant="body1" sx={{ marginRight: 2, color: 'grey' }}>
URL
</Typography>
<Divider orientation="vertical" flexItem sx={{ marginX: 2 }} />
<TextField variant="outlined" defaultValue="testing" InputProps={{ readOnly: true, }} fullWidth />
</Box>