import {css} from '@emotion/react'; import styled from '@emotion/styled'; import {Button} from 'sentry/components/button'; import FieldGroup from 'sentry/components/forms/fieldGroup'; import ExternalLink from 'sentry/components/links/externalLink'; import Panel from 'sentry/components/panels/panel'; import PanelBody from 'sentry/components/panels/panelBody'; import PanelHeader from 'sentry/components/panels/panelHeader'; import QuestionTooltip from 'sentry/components/questionTooltip'; import {t, tct} from 'sentry/locale'; import {space} from 'sentry/styles/space'; import {SamplingModeField} from 'sentry/views/settings/dynamicSampling/samplingModeField'; export function ProjectSampling() { return (
); } const FormActions = styled('div')` display: grid; grid-template-columns: repeat(2, max-content); gap: ${space(1)}; justify-content: flex-end; padding-bottom: ${space(4)}; `; const HeadingRow = styled('div')` display: flex; align-items: center; justify-content: space-between; padding-bottom: ${space(1.5)}; & > h4 { margin: 0; } `; const CommingSoonPanel = styled(Panel)` padding: ${space(2)}; color: ${p => p.theme.subText}; `;