我是新来的material UI
。在这里我有以下form
<FormControl
variant="outlined"
className={css.formControl}
margin="dense"
key={"abc_" + index}
>
<FormControlLabel
control={
<Checkbox
onClick={handleClick(data)}
checked={_.some(selected, { Id: selected.Id })}
value={selected.Id}
color="default"
/>
}
label={data?.Name ?? "NO_LABEL"}
/>
</FormControl>
现在,由于该区域有点长,因此整个标签都可以单击,因此,我正在尝试的是唯一的复选框,并且文本应该是可单击的,并且不应单击其他空白区域。在这里,我给出了
max-width for that label to be 272px.
我该如何添加?
谢谢。