import React from "react"; import { ExternalLinkAltIcon } from "@patternfly/react-icons"; import { Button, ButtonProps } from "@patternfly/react-core"; export const ExternalLink = ({ title, href, ...rest }: ButtonProps) => { return ( ); };