A modal dialog built on the native <dialog> element: focus is trapped, the page behind is inert and doesn't scroll, and Esc closes it.
<dialog>
<Dialog trigger={<Button color="danger">Delete</Button>} title="Delete project?" description="This can't be undone." footer={<Button color="danger" onClick={remove}>Delete</Button>}/> Copy
<Dialog trigger={<Button color="danger">Delete</Button>} title="Delete project?" description="This can't be undone." footer={<Button color="danger" onClick={remove}>Delete</Button>}/>
A modal dialog built on the native
<dialog>element: focus is trapped, the page behind is inert and doesn't scroll, and Esc closes it.