import PropTypes from 'prop-types'; import * as React from 'react'; import { FormattedMessage } from 'react-intl'; import Typography from '@mui/material/Typography'; import { generateExternalLink } from '../../helpers/translationValues'; import { WEBHOOK_DOCS } from '../../config/urls'; import TextField from '../TextField'; import { Alert } from './style'; function WebhookUrlInfo(props) { const { webhookUrl, ...alertProps } = props; return ( } /> ); } WebhookUrlInfo.propTypes = { webhookUrl: PropTypes.string.isRequired, }; export default WebhookUrlInfo;