-
Notifications
You must be signed in to change notification settings - Fork 355
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7696 from LedgerHQ/feat/sell-confirmation-message…
…-lld feat: confirmation message lld
- Loading branch information
Showing
9 changed files
with
206 additions
and
90 deletions.
There are no files selected for viewing
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,5 @@ | ||
--- | ||
"ledger-live-desktop": minor | ||
--- | ||
|
||
Adds confirmation message for Sell in LLD |
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
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
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
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
28 changes: 28 additions & 0 deletions
28
apps/ledger-live-desktop/src/renderer/screens/exchange/Sell/SellCompleted.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,28 @@ | ||
import React from "react"; | ||
import { Trans } from "react-i18next"; | ||
import Box from "~/renderer/components/Box"; | ||
import Text from "~/renderer/components/Text"; | ||
import IconCheck from "~/renderer/icons/Check"; | ||
import IconClock from "~/renderer/icons/Clock"; | ||
import { IconWrapper, WrapperClock } from "../shared/shared-styles"; | ||
|
||
const SellCompleted = () => { | ||
return ( | ||
<Box alignItems="center"> | ||
<IconWrapper> | ||
<IconCheck size={20} /> | ||
<WrapperClock> | ||
<IconClock size={16} /> | ||
</WrapperClock> | ||
</IconWrapper> | ||
<Text mt={4} color="palette.text.shade100" ff="Inter|SemiBold" fontSize={5}> | ||
<Trans i18nKey={`sell.exchangeDrawer.completed.title`} /> | ||
</Text> | ||
<Text mt={13} textAlign="center" color="palette.text.shade50" ff="Inter|Regular" fontSize={4}> | ||
<Trans i18nKey={`sell.exchangeDrawer.completed.description`} /> | ||
</Text> | ||
</Box> | ||
); | ||
}; | ||
|
||
export default SellCompleted; |
Oops, something went wrong.