{props.showDivider && (
// TODO: the -mx-8 is causing overflow in the dialog buttons
)}
{props.children}
);
}
DialogContent.displayName = "DialogContent";
export const DialogTrigger = DialogPrimitive.Trigger;
// export const DialogClose = DialogPrimitive.Close;
export function DialogClose(
props: {
dialogCloseProps?: React.ComponentProps<(typeof DialogPrimitive)["Close"]>;
children?: ReactNode;
onClick?: (e: React.MouseEvent