import React from 'react'; import { ExternalLinkAltIcon } from '@patternfly/react-icons'; export const ExternalLink = ({ title, href, ...rest }: React.HTMLProps) => { return ( {title ? title : href}{' '} {href?.startsWith('http') && } ); };