import styled from '@emotion/styled'; import {getInlineAttachmentRenderer} from 'sentry/components/events/attachmentViewers/previewAttachmentTypes'; import type {Event} from 'sentry/types/event'; import type {IssueAttachment} from 'sentry/types/group'; import useOrganization from 'sentry/utils/useOrganization'; interface InlineAttachmentsProps { attachment: IssueAttachment; eventId: Event['id']; projectSlug: string; } export function InlineEventAttachment({ attachment, projectSlug, eventId, }: InlineAttachmentsProps) { const organization = useOrganization(); const AttachmentComponent = getInlineAttachmentRenderer(attachment); if (!AttachmentComponent) { return null; } return ( ); } const AttachmentPreviewWrapper = styled('div')` grid-column: auto / span 3; border: none; padding: 0; `;