import { css } from '@emotion/css'; import React from 'react'; import { GrafanaTheme2 } from '@grafana/data'; import { Icon, Stack, useStyles2 } from '@grafana/ui'; interface Props { feedbackUrl?: string; } export function LogsFeedback({ feedbackUrl }: Props) { const styles = useStyles2(getStyles); return ( Give feedback ); } function getStyles(theme: GrafanaTheme2) { return { link: css({ color: theme.colors.text.secondary, fontSize: theme.typography.bodySmall.fontSize, ':hover': { color: theme.colors.text.link, }, }), }; }