keycloak-scim/src/components/external-link/ExternalLink.tsx

16 lines
345 B
TypeScript
Raw Normal View History

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