mirror of
https://github.com/SigNoz/signoz.git
synced 2026-05-06 02:20:31 +01:00
* feat: meter explorer * feat: meter explorer * fix: remove meter as data source * fix: change meter-explorer to meter - quick filter * chore: delete test file * fix: failing test cases
20 lines
409 B
TypeScript
20 lines
409 B
TypeScript
import './PanelDataLoading.styles.scss';
|
|
|
|
import { Typography } from 'antd';
|
|
|
|
export function PanelDataLoading(): JSX.Element {
|
|
return (
|
|
<div className="loading-panel-data">
|
|
<div className="loading-panel-data-content">
|
|
<img
|
|
className="loading-gif"
|
|
src="/Icons/loading-plane.gif"
|
|
alt="wait-icon"
|
|
/>
|
|
|
|
<Typography.Text>Fetching data...</Typography.Text>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|