import styled from '@emotion/styled'; import Alert from 'sentry/components/alert'; import {tct} from 'sentry/locale'; type Props = { className?: string; }; const FeedbackAlert = ({className}: Props) => ( {tct('Got feedback? Email [email:ecosystem-feedback@sentry.io].', { email: , })} ); const StyledAlert = styled(Alert)` margin: 20px 0px; `; export default FeedbackAlert;