import { Button } from '@/components/ui/button';
import {
Dialog, DialogTrigger, DialogContent, DialogBody, DialogHeader,
DialogTitle, DialogDescription, DialogFooter, DialogClose,
} from '@/components/ui/dialog';
export function Example() {
return (
<Dialog>
<DialogTrigger render={<Button />}>Start something new</DialogTrigger>
<DialogContent showCloseButton={false}>
<DialogHeader>
<DialogTitle>A fresh start.</DialogTitle>
<DialogDescription>Your next chapter begins here.</DialogDescription>
</DialogHeader>
<DialogBody><p>Build from the foundations you know.</p></DialogBody>
<DialogFooter>
<DialogClose render={<Button variant="outline" />}>Got it</DialogClose>
</DialogFooter>
</DialogContent>
</Dialog>
);
}