import * as React from 'react' export type DialogContentProps = { children?: React.ReactNode className?: string } & React.HTMLAttributes const DialogContent: React.FC = function DialogContent({ children, className, ...props }) { return (
{children}
) } export { DialogContent }