import { ExternalLinkAltIcon } from "@patternfly/react-icons"; import { AnchorHTMLAttributes } from "react"; export type FormattedLinkProps = AnchorHTMLAttributes & { isInline?: boolean; }; export const FormattedLink = ({ title, href, isInline, ...rest }: FormattedLinkProps) => { return ( {title ? title : href}{" "} {href?.startsWith("http") && } ); };