Docs
Alert Dialog
Alert Dialog
A modal dialog that interrupts the user with important content and expects a response.
Loading...
<script lang="ts">
import * as AlertDialog from "@/components/ui/alert-dialog";
import { Button } from "@/components/ui/button";
let open = false;
</script>
<AlertDialog.Root bind:open>
<AlertDialog.Trigger asChild let:builder>
<Button builders={[builder]} variant="outline">Show Dialog</Button>
</AlertDialog.Trigger>
<AlertDialog.Content>
<AlertDialog.Header>
<AlertDialog.Title>Are you absolutely sure?</AlertDialog.Title>
<AlertDialog.Description>
This action cannot be undone. This will permanently delete your account
and remove your data from our servers.
</AlertDialog.Description>
</AlertDialog.Header>
<AlertDialog.Footer>
<AlertDialog.Cancel>Cancel</AlertDialog.Cancel>
<AlertDialog.Action>Continue</AlertDialog.Action>
</AlertDialog.Footer>
</AlertDialog.Content>
</AlertDialog.Root>
<script lang="ts">
import * as AlertDialog from "@/components/ui/alert-dialog";
import { Button } from "@/components/ui/button";
let open = false;
</script>
<AlertDialog.Root bind:open>
<AlertDialog.Trigger asChild let:builder>
<Button builders={[builder]} variant="outline">Show Dialog</Button>
</AlertDialog.Trigger>
<AlertDialog.Content>
<AlertDialog.Header>
<AlertDialog.Title>Are you absolutely sure?</AlertDialog.Title>
<AlertDialog.Description>
This action cannot be undone. This will permanently delete your account
and remove your data from our servers.
</AlertDialog.Description>
</AlertDialog.Header>
<AlertDialog.Footer>
<AlertDialog.Cancel>Cancel</AlertDialog.Cancel>
<AlertDialog.Action>Continue</AlertDialog.Action>
</AlertDialog.Footer>
</AlertDialog.Content>
</AlertDialog.Root>
Installation
npx shadcn-svelte add alert-dialog
Usage
<script lang="ts">
import * as AlertDialog from "$components/ui/alert-dialog";
</script>
<AlertDialog.Root>
<AlertDialog.Trigger>Open</AlertDialog.Trigger>
<AlertDialog.Content>
<AlertDialog.Header>
<AlertDialog.Title>Are you absolutely sure?</AlertDialog.Title>
<AlertDialog.Description>
This action cannot be undone. This will permanently delete your account
and remove your data from our servers.
</AlertDialog.Description>
</AlertDialog.Header>
<AlertDialog.Footer>
<AlertDialog.Cancel>Cancel</AlertDialog.Cancel>
<AlertDialog.Action>Continue</AlertDialog.Action>
</AlertDialog.Footer>
</AlertDialog.Content>
</AlertDialog.Root>
On This Page