Components
Dialog primitive with 20 variants covering the daliagents.com console surfaces - go-live confirms, Agent Care upsell and cancel, invites, OTP verification, dashboard sharing, and engagement terms for Dali Agents.

import { Button } from '@/components/ui/button'
import {
Dialog,
DialogClose,
DialogContent,
DialogDescription,
DialogFooter,
DialogHeader,
DialogTitle,
DialogTrigger,
} from '@/components/ui/dialog'
export function Dialog10() {
return (
<Dialog>
<DialogTrigger asChild>
<Button variant="outline">Send feedback</Button>
</DialogTrigger>
<DialogContent showCloseButton={false} className="sm:max-w-md">
<DialogHeader>
<DialogTitle>Thanks for the feedback</DialogTitle>
<DialogDescription>
The Dali team reads every note and uses it to improve your agents.
Use the footer to dismiss - there is no corner close button on this
dialog.
</DialogDescription>
</DialogHeader>
<DialogFooter>
<DialogClose asChild>
<Button className="w-full sm:w-auto">Done</Button>
</DialogClose>
</DialogFooter>
<a
href="https://daliagents.com"
target="_blank"
rel="noreferrer"
className="text-muted-foreground/60 hover:text-muted-foreground mx-auto text-[10px] tracking-wide transition-colors"
>
daliagents.com
</a>
</DialogContent>
</Dialog>
)
}
export default Dialog10


















Part of Dali Agents — browse the full library on 21st.dev.