import type {ComponentProps} from 'react'; import styled from '@emotion/styled'; import Alert from 'sentry/components/alert'; import FluidHeight from 'sentry/views/replays/detail/layout/fluidHeight'; interface Props extends ComponentProps { error: string; } const FeedbackErrorDetails = styled(({error, ...props}: Props) => ( {error} ))` display: grid; place-items: center; `; export default FeedbackErrorDetails;