import React from 'react'; import PopupBase from '../PopupBase'; import {Button} from '../../GPElements/Button'; /** * Delete Video popup * can only be rendered once! * @constructor */ export const ButtonPopup = (props: { onSubmit: () => void; onDeny: () => void; onAlternativeButton?: () => void; SubmitButtonTitle: string; DenyButtonTitle: string; AlternativeButtonTitle?: string; Title: string; }): JSX.Element => { return ( <> props.onDeny()} height='200px' width='400px' ParentSubmit={(): void => { props.onSubmit(); }}>