signal-desktop/ts/components/conversationList/CreateNewGroupButton.tsx
2021-10-26 14:15:33 -05:00

33 lines
848 B
TypeScript

// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import type { FunctionComponent } from 'react';
import React from 'react';
import { BaseConversationListItem } from './BaseConversationListItem';
import type { LocalizerType } from '../../types/Util';
type PropsType = {
i18n: LocalizerType;
onClick: () => void;
};
export const CreateNewGroupButton: FunctionComponent<PropsType> = React.memo(
function CreateNewGroupButton({ i18n, onClick }) {
const title = i18n('createNewGroupButton');
return (
<BaseConversationListItem
acceptedMessageRequest={false}
conversationType="group"
headerName={title}
i18n={i18n}
isMe={false}
isSelected={false}
onClick={onClick}
sharedGroupNames={[]}
title={title}
/>
);
}
);