Dialog
A modal window that's displayed above page content
<Dialog
trigger={<Button emphasis="high">Open dialog</Button>}
title="Here's a sample dialog"
description="It can include an optional description that provides a bit more context for the user. Isn't that nice?"
actions={(actions) => (
<>
<Button emphasis="high" onClick={actions.close}>
Confirm
</Button>
<Button onClick={actions.close}>Cancel</Button>
</>
)}
/>