mirror of
https://github.com/SigNoz/signoz.git
synced 2026-04-15 16:30:27 +01:00
* chore: updated eslint base config with comments * chore: add eslint rules for no-else-return and curly * chore: use isNumber from lodash-es * chore: add eslint rules for no-console * chore: update eslint overrides * chore: sort all files * chore: fix tests
20 lines
409 B
TypeScript
20 lines
409 B
TypeScript
import { Typography } from 'antd';
|
|
|
|
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="/Icons/loading-plane.gif"
|
|
alt="wait-icon"
|
|
/>
|
|
|
|
<Typography.Text>Fetching data...</Typography.Text>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|