import { css } from '@emotion/css'; import { GrafanaTheme2 } from '@grafana/data'; import { selectors as e2eSelectors } from '@grafana/e2e-selectors'; import { useStyles2 } from '@grafana/ui'; import { useGetPublicDashboardConfig } from './usePublicDashboardConfig'; const selectors = e2eSelectors.pages.PublicDashboard; export const PublicDashboardFooter = function () { const styles = useStyles2(getStyles); const conf = useGetPublicDashboardConfig(); return conf.footerHide ? null : (
); }; const getStyles = (theme: GrafanaTheme2) => ({ footer: css({ display: 'flex', justifyContent: 'end', height: '30px', backgroundColor: theme.colors.background.canvas, position: 'sticky', bottom: 0, zIndex: theme.zIndex.navbarFixed, padding: theme.spacing(0.5, 0), }), link: css({ display: 'flex', alignItems: 'center', }), logoImg: css({ height: '16px', marginLeft: theme.spacing(0.5), }), });