// Copyright 2021 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only import React from 'react'; export type PropsTypeForContact = { backgroundColor: string; text: string; foregroundColor: string; }; export function IdenticonSVGForContact({ backgroundColor, text, foregroundColor, }: PropsTypeForContact): JSX.Element { return ( {text} ); } export type PropsTypeForGroup = { backgroundColor: string; foregroundColor: string; }; export function IdenticonSVGForGroup({ backgroundColor, foregroundColor, }: PropsTypeForGroup): JSX.Element { // Note: the inner SVG below is taken from images/icons/v3/group/group.svg, viewBox // added to match the original SVG, new dimensions to create match Avatar.tsx. return ( ); }