mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-04-20 00:18:45 +01:00
Rename files
This commit is contained in:
15
ts/components/conversation/MessageTextMetadataSpacer.dom.tsx
Normal file
15
ts/components/conversation/MessageTextMetadataSpacer.dom.tsx
Normal file
@@ -0,0 +1,15 @@
|
||||
// Copyright 2022 Signal Messenger, LLC
|
||||
// SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
import type { ReactElement } from 'react';
|
||||
import React from 'react';
|
||||
|
||||
const SPACING = 10;
|
||||
|
||||
export function MessageTextMetadataSpacer({
|
||||
metadataWidth,
|
||||
}: Readonly<{ metadataWidth: number }>): ReactElement {
|
||||
return (
|
||||
<span style={{ display: 'inline-block', width: metadataWidth + SPACING }} />
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user