diff --git a/packages/ui/src/dialog.tsx b/packages/ui/src/dialog.tsx index 8fe7d53c7..ed1c39567 100644 --- a/packages/ui/src/dialog.tsx +++ b/packages/ui/src/dialog.tsx @@ -5,6 +5,8 @@ import { XIcon } from "lucide-react"; import * as React from "react"; import { cn } from "./lib/utils"; +import { Button } from "./button"; +import { Icon } from "./icon"; export type { DialogProps } from "@radix-ui/react-dialog"; @@ -59,12 +61,14 @@ const DialogContent = React.forwardRef< > {children} {!hideCloseButton ? ( - - <> - + + + ) : null}