12 lines
362 B
TypeScript
12 lines
362 B
TypeScript
// Copyright 2022 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import type { ReactElement } from 'react';
|
|
import React from 'react';
|
|
import type { AvatarSize } from './Avatar';
|
|
|
|
export function AvatarSpacer({
|
|
size,
|
|
}: Readonly<{ size: AvatarSize }>): ReactElement {
|
|
return <div style={{ minWidth: size, height: size, width: size }} />;
|
|
}
|