import styled from '@emotion/styled'; import {Button} from 'sentry/components/button'; import PageAlertBar from 'sentry/components/pageAlertBar'; import {IconLightning} from 'sentry/icons'; import {t} from 'sentry/locale'; import {space} from 'sentry/styles/space'; import type {Organization} from 'sentry/types'; import {trackAnalytics} from 'sentry/utils/analytics'; export default function FinishSetupAlert({ organization, projectId, }: { organization: Organization; projectId: string; }) { return ( {t( 'You are viewing a sample transaction. Configure performance to start viewing real transactions.' )} ); } const TextWrapper = styled('span')` margin: 0 ${space(1)}; `;