2020-09-01 14:51:59 +00:00
|
|
|
import React from "react";
|
|
|
|
import { ExternalLinkAltIcon } from "@patternfly/react-icons";
|
2020-09-01 08:25:24 +00:00
|
|
|
|
|
|
|
export const ExternalLink = ({
|
|
|
|
title,
|
|
|
|
href,
|
|
|
|
...rest
|
|
|
|
}: React.HTMLProps<HTMLAnchorElement>) => {
|
|
|
|
return (
|
|
|
|
<a href={href} {...rest}>
|
2020-09-01 14:51:59 +00:00
|
|
|
{title ? title : href}{" "}
|
|
|
|
{href?.startsWith("http") && <ExternalLinkAltIcon />}
|
2020-09-01 08:25:24 +00:00
|
|
|
</a>
|
|
|
|
);
|
|
|
|
};
|