We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4429cc4 commit b2ef36aCopy full SHA for b2ef36a
1 file changed
src/gitops/utils/components/ExternalLink/ExternalLink.tsx
@@ -1,8 +1,6 @@
1
import * as React from 'react';
2
import classNames from 'classnames';
3
4
-import { ExternalLinkAltIcon } from '@patternfly/react-icons';
5
-
6
type ExternalLinkProps = {
7
href: string;
8
text?: React.ReactNode;
@@ -27,7 +25,7 @@ const ExternalLink: React.FC<ExternalLinkProps> = ({
27
25
data-test-id={dataTestID}
28
26
{...(stopPropagation ? { onClick: (e) => e.stopPropagation() } : {})}
29
>
30
- {children || text} <ExternalLinkAltIcon />
+ {children || text}
31
</a>
32
);
33
0 commit comments