import {IconGroup} from 'sentry/icons'; import {t} from 'sentry/locale'; import {Row} from 'sentry/views/performance/traceDetails/styles'; import type {ParentAutogroupNode} from '../../traceTree'; import {TraceDrawerComponents} from './styles'; export function ParentAutogroupNodeDetails({node}: {node: ParentAutogroupNode}) { return (
{t('Autogroup')}
{t( 'Chain of immediate and only children spans with the same operation as their parent.' )} {node.groupCount} {t('Span Operation')} : {node.value.op}
); }