import * as React from 'react'; import { FormattedMessage } from 'react-intl'; import Typography from '@mui/material/Typography'; import type { AlertProps } from '@mui/material/Alert'; import { generateExternalLink } from '../../helpers/translation-values'; import { WEBHOOK_DOCS } from '../../config/urls'; import TextField from '../TextField'; import { Alert } from './style'; type WebhookUrlInfoProps = { webhookUrl: string; } & AlertProps; function WebhookUrlInfo(props: WebhookUrlInfoProps): React.ReactElement { const { webhookUrl, ...alertProps } = props; return ( } /> ); } export default WebhookUrlInfo;