mirror of
https://github.com/grafana/grafana.git
synced 2025-02-11 16:15:42 -06:00
* Chore: transfer styling to Explore.tsx and convert to Emotion * feat: create a component and export it * Chore: replace by new component * Chore: replace by new component * Feat: create a story * Chore: clean up * Chore: clean up
36 lines
932 B
TypeScript
36 lines
932 B
TypeScript
import { css } from '@emotion/css';
|
|
import React from 'react';
|
|
|
|
import { GrafanaTheme2 } from '@grafana/data/src';
|
|
import { useStyles2, PanelContainer } from '@grafana/ui';
|
|
|
|
export const NoData = () => {
|
|
const css = useStyles2(getStyles);
|
|
return (
|
|
<>
|
|
<PanelContainer data-testid="explore-no-data" className={css.wrapper}>
|
|
<span className={css.message}>{'No data'}</span>
|
|
</PanelContainer>
|
|
</>
|
|
);
|
|
};
|
|
|
|
const getStyles = (theme: GrafanaTheme2) => ({
|
|
wrapper: css`
|
|
label: no-data-card;
|
|
padding: ${theme.spacing(3)};
|
|
background: ${theme.colors.background.primary};
|
|
border-radius: ${theme.shape.borderRadius(2)};
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-grow: 1;
|
|
`,
|
|
message: css`
|
|
font-size: ${theme.typography.h2.fontSize};
|
|
padding: ${theme.spacing(4)};
|
|
color: ${theme.colors.text.disabled};
|
|
`,
|
|
});
|