import styled from '@emotion/styled'; import {FeatureFeedback} from 'sentry/components/featureFeedback'; import * as Layout from 'sentry/components/layouts/thirds'; import Link from 'sentry/components/links/link'; import {t} from 'sentry/locale'; import space from 'sentry/styles/space'; import {Organization} from 'sentry/types'; type Props = { activeTab: 'stats' | 'issues' | 'health'; organization: Organization; }; function StatsHeader({organization, activeTab}: Props) { return ( {t('Stats')} {activeTab !== 'stats' && }
  • {t('Usage')}
  • {t('Issues')}
  • {t('Health')}
  • ); } export default StatsHeader; const StyledLayoutTitle = styled(Layout.Title)` margin-top: ${space(0.5)}; `;