Search code examples
javascriptreactjsantd

Remove default close ( X ) button from ant design Notification


I am using Notification component from ant design and I want to remove close (X) button from Notification box.

I've tried adding closable: false and icon: null but not working

notification.info({
    description: "Sample description",
    closable: false,
    icon: null 
})

Solution

  • Ant Design Notification doesn't accept closable prop. Please read the documentation.