import { css, cx } from '@emotion/css'; import { GrafanaTheme2 } from '@grafana/data'; import { Legend, useStyles2 } from '@grafana/ui'; export function VariableLegend({ className, ...rest }: Parameters['0']) { const styles = useStyles2(getStyles); return ; } function getStyles(theme: GrafanaTheme2) { return { legend: css({ marginTop: theme.spacing(3), marginBottom: theme.spacing(1), }), }; }