mirror of
https://github.com/SigNoz/signoz.git
synced 2026-04-30 15:40:27 +01:00
Some checks failed
build-staging / prepare (push) Has been cancelled
build-staging / js-build (push) Has been cancelled
build-staging / go-build (push) Has been cancelled
build-staging / staging (push) Has been cancelled
Release Drafter / update_release_draft (push) Has been cancelled
* chore: jest module resolution fix * chore: remove the snapshot update since no migration is done under this pr * chore: added eslint and stylelint for the asset migration task * chore: asset migration - using the src/assets across the codebase, instead of the public dir * chore: code refactor * chore: fmt fix * chore: strengthen the lint rule and migration the gaps found * chore: addressed feedback comments * chore: addressed comments and added public reference rule * chore: addressed comments * feat: addressed comments
18 lines
446 B
TypeScript
18 lines
446 B
TypeScript
import { Typography } from 'antd';
|
|
|
|
import loadingPlaneUrl from '@/assets/Icons/loading-plane.gif';
|
|
|
|
import './PanelDataLoading.styles.scss';
|
|
|
|
export function PanelDataLoading(): JSX.Element {
|
|
return (
|
|
<div className="loading-panel-data">
|
|
<div className="loading-panel-data-content">
|
|
<img className="loading-gif" src={loadingPlaneUrl} alt="wait-icon" />
|
|
|
|
<Typography.Text>Fetching data...</Typography.Text>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|