-
Notifications
You must be signed in to change notification settings - Fork 327
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🍱 (lld): europa postonboardingbanner icon & onboarding restore apps
- Loading branch information
1 parent
f9730da
commit c728657
Showing
4 changed files
with
67 additions
and
123 deletions.
There are no files selected for viewing
141 changes: 44 additions & 97 deletions
141
...ger-live-desktop/src/renderer/components/OnboardingAppInstall/RestoreAppsIllustration.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 3 additions & 0 deletions
3
...edger-live-desktop/src/renderer/components/PostOnboardingHub/EuropaBannerIllustration.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
import StaxBannerIllustration from "./StaxBannerIllustration"; | ||
|
||
export default StaxBannerIllustration; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
.../ledger-live-desktop/src/renderer/components/PostOnboardingHub/StaxBannerIllustration.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import React from "react"; | ||
import Illustration from "~/renderer/components/Illustration"; | ||
import { Flex } from "@ledgerhq/react-ui"; | ||
|
||
import bannerStaxLight from "./assets/bannerStaxLight.svg"; | ||
import bannerStaxDark from "./assets/bannerStaxDark.svg"; | ||
|
||
const StaxBannerIllustration = () => ( | ||
<Flex alignItems="center" justifyContent="center" bg="neutral.c100" borderRadius="100%" p={1}> | ||
<Illustration lightSource={bannerStaxLight} darkSource={bannerStaxDark} size={30} /> | ||
</Flex> | ||
); | ||
|
||
export default StaxBannerIllustration; |