// Copyright 2020-2021 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only import React from 'react'; import classNames from 'classnames'; import type { AvatarColorType } from '../types/Colors'; export type PropsType = { avatarPath?: string; children?: React.ReactNode; className?: string; color?: AvatarColorType; }; export const CallBackgroundBlur = ({ avatarPath, children, className, color, }: PropsType): JSX.Element => { return (
{avatarPath && (
)} {children}
); };