ant-design / ant-design-mobile-rn

Ant Design for React Native
https://rn.mobile.ant.design/
MIT License
3k stars 610 forks source link

feat: children as react element in button #1260

Closed lucas-it closed 1 year ago

lucas-it commented 1 year ago

This PR adds the ability to pass a React element into the Button element. For exemple :

<Button type="primary">
  <Icon name="login" />
</Button>
lhr000lhr commented 1 year ago

you also need to add

  children?: React.ReactNode

in ButtonProps for React 18

lucas-it commented 1 year ago

you also need to add

  children?: React.ReactNode

in ButtonProps for React 18

You're right. I forget it. It's fixed