Modals, popovers, dropdown menus and tooltips. They trap focus where needed, close on Escape and on click-outside, and are always styled, never the native browser dialogs.
<Modal title="Delete spec" open={open} onClose={close}>
<p>This cannot be undone.</p>
<Button variant="secondary" onClick={close}>Cancel</Button>
<Button>Delete spec</Button>
</Modal>
<Dropdown
label="Options"
items={['Duplicate', 'Rename', 'Delete']}
/>