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 (