import * as React from 'react'; import { Close, Content, Portal } from '@radix-ui/react-dialog'; import { XIcon } from 'lucide-react'; import { cn } from '#utils'; import { DialogOverlay } from './DialogOverlay.tsx'; export const DialogContent = ({ children, className, ...props }: React.ComponentProps) => { return ( {children} ); };