We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c26e9e8 commit 535b37fCopy full SHA for 535b37f
src/components/icons/PlatformIcon.tsx
@@ -1,4 +1,4 @@
1
-import { MarkGithubIcon, ServerIcon } from '@primer/octicons-react';
+import { BeakerIcon, MarkGithubIcon, ServerIcon } from '@primer/octicons-react';
2
import type { FC } from 'react';
3
import type { Size } from '../../types';
4
import type { PlatformType } from '../../utils/auth/types';
@@ -15,6 +15,7 @@ export const PlatformIcon: FC<IPlatformIcon> = (props: IPlatformIcon) => {
15
{props.type === 'GitHub Enterprise Server' && (
16
<ServerIcon size={props.size} />
17
)}
18
+ {props.type === 'Bitbucket Cloud' && <BeakerIcon size={props.size} />}
19
</span>
20
);
21
};
0 commit comments