Skip to content

Commit 535b37f

Browse files
committed
feat: bitbucket cloud support
Signed-off-by: Adam Setch <[email protected]>
1 parent c26e9e8 commit 535b37f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/components/icons/PlatformIcon.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { MarkGithubIcon, ServerIcon } from '@primer/octicons-react';
1+
import { BeakerIcon, MarkGithubIcon, ServerIcon } from '@primer/octicons-react';
22
import type { FC } from 'react';
33
import type { Size } from '../../types';
44
import type { PlatformType } from '../../utils/auth/types';
@@ -15,6 +15,7 @@ export const PlatformIcon: FC<IPlatformIcon> = (props: IPlatformIcon) => {
1515
{props.type === 'GitHub Enterprise Server' && (
1616
<ServerIcon size={props.size} />
1717
)}
18+
{props.type === 'Bitbucket Cloud' && <BeakerIcon size={props.size} />}
1819
</span>
1920
);
2021
};

0 commit comments

Comments
 (0)