import { FunctionComponent, ReactNode } from 'react' import { AlertDialogLabel } from '@reach/alert-dialog' type Props = { closeDialog: () => void className?: string headerButtons?: ReactNode } const ModalDialogLabel: FunctionComponent = ({ children, closeDialog, className, headerButtons }) => (
{children}
{headerButtons}
Close

) export default ModalDialogLabel