i need to add CheckCircleSharpIcon from '@mui/icons-material/CheckCircleSharp' instead of bullet icon
我需要从‘@Mui/icons-Material/CheckCircleSharp’添加CheckCircleSharpIcon,而不是添加项目符号图标
{res?.map((radiooption, index) => (
<>
<RadioGroup
aria-labelledby="demo-radio-buttons-group-label"
name="radio-buttons-group"
className={classes.radioGroup}
value={value}
onChange={handleChange}
key={radiooption.secondaryRadioName}
>
<FormControlLabel className={classes.radioButton} value=
{radiooption?.secondaryRadioName} control={<Radio />} label={<span
dangerouslySetInnerHTML={{ __html: radiooption?.secondaryRadioName }}/>}
/>
</RadioGroup>
</>
))}
更多回答
优秀答案推荐
=> You need to add checkedIcon
property in the control this way:
=>您需要通过以下方式在控件中添加check kedIcon属性:
Sample Code: https://codesandbox.io/s/brave-einstein-cgqfrk?file=/Demo.js
示例代码:https://codesandbox.io/s/brave-einstein-cgqfrk?file=/Demo.js
Let me know, if you have any doubt. Thanks.
如果你有任何疑问,请告诉我。谢谢。
According to the API, you can utilize its checkedIcon
prop, so the Radio component should looks like this
根据API,您可以利用它的check Icon属性,因此Radio组件应该如下所示
<Radio checkedIcon={<CheckCircleIcon />} />
Link to the checkedIcon
props info: https://mui.com/material-ui/api/radio/#Radio-prop-checkedIcon
指向选中的图标道具信息的链接:https://mui.com/material-ui/api/radio/#Radio-prop-checkedIcon
CodeSandbox working demo (see line 20): https://codesandbox.io/s/bold-cloud-xhylt5?file=/Demo.tsx:718-761
代码沙盒工作演示(参见第20行):https://codesandbox.io/s/bold-cloud-xhylt5?file=/Demo.tsx:718-761
更多回答
But how to add in RadioGroup or in FormControlLabel?
但是如何在RadioGroup或FormControlLabel中添加呢?
You need to add in FormControlLabel, this way: control={<Radio checkedIcon={<CheckCircleOutlineSharpIcon />} />}
您需要在FormControlLabel中添加,这样:Control={}/>}
But how to add in RadioGroup or in FormControlLabel?
但是如何在RadioGroup或FormControlLabel中添加呢?
@ArunKrishna According to the RadioGroup API and FormControlLabel API, no option prop is provided. Meaning you need to use Radio
component to do it the MUI native way. Why would you like to do it in other places btw?
@ArunKrishna根据RadioGroup接口和FormControlLabel接口,没有提供选项道具。这意味着您需要使用Radio Component以MUI原生方式完成此操作。顺便说一句,你为什么想在其他地方做呢?
Sorry got it, Thanks for the help
对不起,明白了,谢谢你的帮助
我是一名优秀的程序员,十分优秀!