// Copyright 2021 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only import * as React from 'react'; import { LocalizerType } from '../../types/Util'; export type PropsType = { i18n: LocalizerType; onCancelJoinRequest: () => unknown; }; export const GroupV2PendingApprovalActions = ({ i18n, onCancelJoinRequest, }: PropsType): JSX.Element => { return (
{i18n('GroupV2--join--requested')}