23 lines
593 B
TypeScript
23 lines
593 B
TypeScript
import { css } from '@emotion/css';
|
|
import * as React from 'react';
|
|
|
|
import { GrafanaTheme2 } from '@grafana/data';
|
|
import { useStyles2 } from '@grafana/ui';
|
|
|
|
export const EmptyArea = ({ children }: React.PropsWithChildren<{}>) => {
|
|
const styles = useStyles2(getStyles);
|
|
|
|
return <div className={styles.container}>{children}</div>;
|
|
};
|
|
|
|
const getStyles = (theme: GrafanaTheme2) => {
|
|
return {
|
|
container: css({
|
|
backgroundColor: theme.colors.background.secondary,
|
|
color: theme.colors.text.secondary,
|
|
padding: theme.spacing(4),
|
|
textAlign: 'center',
|
|
}),
|
|
};
|
|
};
|