Signal-Desktop/ts/components/Alert.tsx

36 lines
708 B
TypeScript

// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import type { FunctionComponent, ReactNode } from 'react';
import React from 'react';
import type { LocalizerType } from '../types/Util';
import { Button } from './Button';
import { Modal } from './Modal';
type PropsType = {
title?: string;
body: ReactNode;
i18n: LocalizerType;
onClose: () => void;
};
export const Alert: FunctionComponent<PropsType> = ({
body,
i18n,
onClose,
title,
}) => (
<Modal
modalName="Alert"
i18n={i18n}
onClose={onClose}
title={title}
modalFooter={
<Button onClick={onClose}>{i18n('Confirmation--confirm')}</Button>
}
>
{body}
</Modal>
);