mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-04-24 10:28:03 +01:00
Improve left pane UI when loading search results
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
// Copyright 2021 Signal Messenger, LLC
|
||||
// SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
import React, { CSSProperties, FunctionComponent } from 'react';
|
||||
|
||||
type PropsType = {
|
||||
style: CSSProperties;
|
||||
};
|
||||
|
||||
export const SearchResultsLoadingFakeHeader: FunctionComponent<PropsType> = ({
|
||||
style,
|
||||
}) => <div className="module-SearchResultsLoadingFakeHeader" style={style} />;
|
||||
Reference in New Issue
Block a user