// Copyright 2021 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only import React from 'react'; export type PropsType = { backgroundColor: string; content: string; foregroundColor: string; }; export function IdenticonSVG({ backgroundColor, content, foregroundColor, }: PropsType): JSX.Element { return ( {content} ); }