import React from "react"; import { ExternalLinkAltIcon } from "@patternfly/react-icons"; import { Button, ButtonProps } from "@patternfly/react-core"; import { IFormatter, IFormatterValueType } from "@patternfly/react-table"; export const FormattedLink = ({ title, href, ...rest }: ButtonProps) => { return ( ); }; export const formattedLinkTableCell = (): IFormatter => ( data?: IFormatterValueType ) => { return (data ? ( ) : undefined) as object; };