I expected to set any right button (not close button) by setting disallowClose = false and children=<><Text>message</Text><Button>do some action</Button></> .
But Notification component's implement (=below code) seems did not allow those thing cause children prop is wrapped by Text component...
// mantine-core/Notification/Notification.tsx
<div className={classes.body}>
{title && (
<Text className={classes.title} size="sm" weight={500}>
{title}
</Text>
)}
<Text color="dimmed" className={classes.description} size="sm">
{children}
</Text>
</div>
{!disallowClose && (
<CloseButton
{...closeButtonProps}
iconSize={16}
color="gray"
onClick={onClose}
className={classes.closeButton}
/>
)}
Is there any way ?