import {Fragment} from 'react'; import styled from '@emotion/styled'; import {Button} from 'sentry/components/button'; import ButtonBar from 'sentry/components/buttonBar'; import {t, tct} from 'sentry/locale'; import {space} from 'sentry/styles/space'; import type {Organization} from 'sentry/types/organization'; import type {Project} from 'sentry/types/project'; import FirstEventIndicator from 'sentry/views/onboarding/components/firstEventIndicator'; import CreateSampleEventButton from 'sentry/views/onboarding/createSampleEventButton'; interface FirstEventFooterProps { organization: Organization; project: Project; docsLink?: string; docsOnClick?: () => void; } export default function FirstEventFooter({ organization, project, docsLink, docsOnClick, }: FirstEventFooterProps) { return ( {({indicator, firstEventButton}) => ( {firstEventButton} {indicator} )} {tct( 'Just want to poke around before getting too cozy with the SDK? [sample:View a sample event for this SDK] or [skip:finish setup later].', { sample: ( ), skip: (