import PropTypes from 'prop-types' import { Typography, Flex, Button, Tooltip } from 'antd' import LinkIcon from '../../Icons/LinkIcon' import CopyButton from './CopyButton' const { Text, Link } = Typography const UrlDisplay = ({ url, showCopy = true, showLink = false }) => { if (!url) return n/a return ( <> {showLink ? ( {url} ) : ( <> {url}