ant-design / ant-design-mobile

Essential UI blocks for building mobile web apps.
https://mobile.ant.design
MIT License
11.63k stars 2.4k forks source link

[V5] checkbox 是否增加自定义icon #3896

Closed xiaohuoni closed 3 years ago

xiaohuoni commented 3 years ago

What problem does this feature solve?

使用 checkbox 时,可以自定义 icon

What does the proposed API look like?

<CheckBox icon={<CustomIcon  />} > CheckBox </CheckBox>
awmleer commented 3 years ago

需要通过 renderProps 的形式把 checked 状态暴露出来:

<CheckBox
  icon={checked => checked ? <CustomCheckedIcon /> : <CustomUncheckedIcon />}
>
  CheckBox
</CheckBox>
zqran commented 3 years ago

@awmleer 我来按照 renderProps 实现下~