34 lines
1.1 KiB
TypeScript
34 lines
1.1 KiB
TypeScript
|
// Copyright 2021 Signal Messenger, LLC
|
||
|
// SPDX-License-Identifier: AGPL-3.0-only
|
||
|
|
||
|
import type { ReactElement } from 'react';
|
||
|
import React from 'react';
|
||
|
import type { LocalizerType } from '../types/Util';
|
||
|
import { Modal } from './Modal';
|
||
|
|
||
|
export function BadgeSustainerInstructionsDialog({
|
||
|
i18n,
|
||
|
onClose,
|
||
|
}: Readonly<{ i18n: LocalizerType; onClose: () => unknown }>): ReactElement {
|
||
|
return (
|
||
|
<Modal
|
||
|
hasXButton
|
||
|
moduleClassName="BadgeSustainerInstructionsDialog"
|
||
|
i18n={i18n}
|
||
|
onClose={onClose}
|
||
|
>
|
||
|
<h1 className="BadgeSustainerInstructionsDialog__header">
|
||
|
{i18n('BadgeSustainerInstructions__header')}
|
||
|
</h1>
|
||
|
<h2 className="BadgeSustainerInstructionsDialog__subheader">
|
||
|
{i18n('BadgeSustainerInstructions__subheader')}
|
||
|
</h2>
|
||
|
<ol className="BadgeSustainerInstructionsDialog__instructions">
|
||
|
<li>{i18n('BadgeSustainerInstructions__instructions__1')}</li>
|
||
|
<li>{i18n('BadgeSustainerInstructions__instructions__2')}</li>
|
||
|
<li>{i18n('BadgeSustainerInstructions__instructions__3')}</li>
|
||
|
</ol>
|
||
|
</Modal>
|
||
|
);
|
||
|
}
|