mirror of
https://github.com/oxen-io/session-desktop.git
synced 2023-12-14 02:12:57 +01:00
13 lines
281 B
TypeScript
13 lines
281 B
TypeScript
import React from 'react';
|
|
|
|
export const LoadingIndicator = () => {
|
|
return (
|
|
<div className="loading-widget">
|
|
<div className="container">
|
|
<span className="dot" />
|
|
<span className="dot" />
|
|
<span className="dot" />
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|