import styled from '@emotion/styled'; import ErrorLevel from 'sentry/components/events/errorLevel'; import {space} from 'sentry/styles/space'; import type {Level} from 'sentry/types'; type Props = { annotations?: React.ReactNode; className?: string; hasGuideAnchor?: boolean; level?: Level; levelIndicatorSize?: string; message?: React.ReactNode; }; const EventMessage = styled( ({className, level, levelIndicatorSize, message, annotations}: Props) => (