import type { FC, ReactNode } from 'react' import classNames from 'classnames' import { forwardRef } from 'react' export interface DialogContentProps { className?: string children?: ReactNode } const DialogContent: FC = forwardRef( ({ className, children }, ref) => { return (
{children}
) }, ) export default DialogContent