examples/dialog-default.tsx
1import { Dialog, DialogContent, DialogHeader, DialogTitle, DialogTrigger } from "@/components/wensity/dialog";23export function DefaultDialog() {4 return (5 <Dialog>6 <DialogTrigger>Open</DialogTrigger>7 <DialogContent>8 <DialogHeader>9 <DialogTitle>Notification preferences</DialogTitle>10 </DialogHeader>11 </DialogContent>12 </Dialog>13 );14}