mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-04-28 20:33:17 +01:00
18 lines
435 B
TypeScript
18 lines
435 B
TypeScript
// Copyright 2018 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import React from 'react';
|
|
|
|
export function LoadingIndicator(): JSX.Element {
|
|
return (
|
|
<div className="loading-widget">
|
|
{/* eslint-disable-next-line local-rules/enforce-tw */}
|
|
<div className="container">
|
|
<span className="dot" />
|
|
<span className="dot" />
|
|
<span className="dot" />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|