From 5e5c96eaa6a1a99a8409efdd2489922a4c7ff29f Mon Sep 17 00:00:00 2001 From: Christian Abella Date: Wed, 12 Feb 2025 14:26:07 -1000 Subject: [PATCH] AXON-72: logo files --- .../icons/BitbucketOnboardingLogo.tsx | 94 ++++++++++++++++ .../atlascode/icons/JiraOnboardingLogo.tsx | 104 ++++++++++++++++++ 2 files changed, 198 insertions(+) create mode 100644 src/react/atlascode/icons/BitbucketOnboardingLogo.tsx create mode 100644 src/react/atlascode/icons/JiraOnboardingLogo.tsx diff --git a/src/react/atlascode/icons/BitbucketOnboardingLogo.tsx b/src/react/atlascode/icons/BitbucketOnboardingLogo.tsx new file mode 100644 index 00000000..7a7be966 --- /dev/null +++ b/src/react/atlascode/icons/BitbucketOnboardingLogo.tsx @@ -0,0 +1,94 @@ +import React from 'react'; + +export const BitbucketOnboardingLogo: React.FC> = (props) => { + return ( + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ); +}; diff --git a/src/react/atlascode/icons/JiraOnboardingLogo.tsx b/src/react/atlascode/icons/JiraOnboardingLogo.tsx new file mode 100644 index 00000000..2ec6ff41 --- /dev/null +++ b/src/react/atlascode/icons/JiraOnboardingLogo.tsx @@ -0,0 +1,104 @@ +import React from 'react'; + +export const JiraOnboardingLogo: React.FC> = (props) => { + return ( + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ); +};