import {cn} from '@/lib/utils.ts' import React from 'react' const ModalDialog = React.forwardRef>( ({className, children, open, ...props}, ref) => ( open && (
{children}
) )) ModalDialog.displayName = 'ModalDialog' export default ModalDialog