Search code examples
reactjsmodal-dialogiconsantd

How to add custom close button for antd modal?


I want to add custom close button for antd modal. How can I do so?

This is my current close button

1

I want to add a custom image in place of it like this one.

This is the icon I want to add

2


Solution

  • You can use API property called closeIcons on Model div like this:

    <Modal
        title="Modal 1000px width"
        centered
        visible={visible}
        closeIcon={<LogoutOutlined />} // Choose any icon you need.
      >
        <p>some contents...</p>
        <p>some contents...</p>
        <p>some contents...</p>
      </Modal>
    

    Reference: antd API