Theme Switcher

Dialog

A window overlaid on either the primary window or another dialog window, rendering the content underneath inert.

import { Dialog, DialogBody, DialogContent, DialogFooter, DialogHeader, DialogTitle, DialogTrigger } from "@ngrok/mantle";

<Dialog>
	<DialogTrigger asChild>
		<Button>Open dialog</Button>
	</DialogTrigger>
	<DialogContent>
		<DialogHeader>
			<DialogTitle>Are you absolutely sure?</DialogTitle>
		</DialogHeader>
		<DialogBody>
			This action cannot be undone. This will permanently delete your account and remove your data from our
			servers.
		</DialogBody>
		<DialogFooter>
			<Button>
				Delete
			</Button>
			<Button>
				Cancel
			</Button>
		</DialogFooter>
	</DialogContent>
</Dialog>