mirror of
https://github.com/grafana/grafana.git
synced 2025-02-15 01:53:33 -06:00
* Babel: Updates babel dependencies to latest version * Emotion: Upgrade form 10 to 11 * Fixing tests * Updated to use emotion/css instead in test
25 lines
669 B
TypeScript
25 lines
669 B
TypeScript
import React, { PropsWithChildren, ReactElement } from 'react';
|
|
import { useStyles } from '@grafana/ui';
|
|
import { GrafanaTheme } from '@grafana/data';
|
|
import { css } from '@emotion/css';
|
|
|
|
interface VariableSectionHeaderProps {
|
|
name: string;
|
|
}
|
|
|
|
export function VariableSectionHeader({ name }: PropsWithChildren<VariableSectionHeaderProps>): ReactElement {
|
|
const styles = useStyles(getStyles);
|
|
|
|
return <h5 className={styles.sectionHeading}>{name}</h5>;
|
|
}
|
|
|
|
function getStyles(theme: GrafanaTheme) {
|
|
return {
|
|
sectionHeading: css`
|
|
label: sectionHeading;
|
|
font-size: ${theme.typography.size.md};
|
|
margin-bottom: ${theme.spacing.sm};
|
|
`,
|
|
};
|
|
}
|