import styled from '@emotion/styled'; import onboardingServerSideSampling from 'sentry-images/spot/onboarding-server-side-sampling.svg'; import Button from 'sentry/components/button'; import ButtonBar from 'sentry/components/buttonBar'; import OnboardingPanel from 'sentry/components/onboardingPanel'; import {t} from 'sentry/locale'; import {SERVER_SIDE_SAMPLING_DOC_LINK} from './utils'; type Props = { hasAccess: boolean; isProjectIncompatible: boolean; onGetStarted: () => void; onReadDocs: () => void; }; export function SamplingPromo({ onGetStarted, onReadDocs, hasAccess, isProjectIncompatible, }: Props) { return ( }>

{t('Sample for relevancy')}

{t( 'Create rules to sample transactions under specific conditions, keeping what you need and dropping what you don’t.' )}
); } const ButtonList = styled(ButtonBar)` grid-template-columns: repeat(auto-fit, minmax(130px, max-content)); `; const Paragraph = styled('p')` font-size: ${p => p.theme.fontSizeLarge}; `;