-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: [GSW-2033] Swap Renewal (TokenPriceChart LineGraph) * feat: [GSW-2033] Swap Renewal (TokenPriceChart LineGraph) * feat: [GSW-2033] Swap Renewal (TokenPriceChart LineGraph) * fix: [GSW-2033] Token Price Chart * feat: [GSW-2033] display default token when no tokens are selected * feat: [GSW-2033] add mouseOut handler for chart reset * feat: [GSW-2033] i18n * fix: [GSW-2033] Change chart time notation * feat: [GSW-2033] Improve Swap Chart Gradient position & loading * feat: [GSW-2033] Remove the top and bottom coordinate (price range) lines * fix: [GSW-2033] Improve mobile UI * feat: [GSW-2033] TokenPair Transaction list UI * fix: Not fetching when typing after the maximum number of decimal places * fix: [GSW-2033] skip loading state for messages ending with period * fix: [GSW-2033] Improve UI * fix: [GSW-2033] Improve UI * fix: [GSW-2033] Response layout * fix: [GSW-2033] Improve layout * fix: [GSW-2033] Improve UI * fix: [GSW-2033] Improve UI * fix: [GSW-2033] Improve UI * feat: [GSW-2033] Amount Input UI renewal * feat: [GSW-2033] Amount Input UI renewal in TokenDetail * feat: [GSW-2033] Amount Input UI renewal in EarnAddPosition * feat: [GSW-2033] Amount Input UI renewal in Wallet Send * feat: [GSW-2033] Amount Input UI renewal in Launchpad * fix: [GSW-2033] path-link-icon color * refactor: [GSW-2033] Extract this nested ternary * fix: [GSW-2033] Improve AmountInput UI * Revert "refactor: [GSW-2033] Extract this nested ternary" This reverts commit 632104e. * fix: [GSW-2033] UI * refactor: [GSW-2033] SonarQube issue * fix: [GSW-2033] Improved when loading is not visible * fix: [GSW-2033] TokenSwapChart Mobile Hover UI * fix: [GSW-2033] Improve UI * feat: [GSW-2033] refetching UI * feat: [GSW-2033] Improve User Typing state * fix: [GSW-2033] MaxButton size * fix: [GSW-2033] TokenPath Responsive UI * fix: [GSW-2033] TokenSelect Modal UI Issue * fix: [GSW-2033] TokenPath UI * feat: [GSW-2033] Improve UI * fix: [GSW-2033] Mobile Chart Hover * fix: [GSW-2033] Native TokenDetail Link * fix: [GSW-2033] Native TokenDetail Link * fix: [GSW-2033] TokenPath LinkIcon UI * refactor: [GSW-2033] SonarQube issue * refactor: [GSW-2033] SonarQube issue * fix: [GSW-2033] useElementWidthList * fix: [GSW-2033] useElementWidthList * refactor: [GSW-2033] refactor: Improve readability of graph hover logic with early return * refactor: [GSW-2033] apply PR review feedback
- Loading branch information
Showing
50 changed files
with
1,437 additions
and
296 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
import { useTheme } from "@emotion/react"; | ||
|
||
const IconWallet = () => { | ||
const theme = useTheme(); | ||
return ( | ||
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="12" viewBox="0 0 14 12" fill="none"> | ||
<path | ||
d="M12.9987 7.57254H10.7487C9.92069 7.57254 9.24869 6.86854 9.24869 6.00112C9.24869 5.13369 9.92069 4.42969 10.7487 4.42969H12.9987" | ||
stroke={theme.themeKey === "dark" ? "#596782" : "#90a2c0"} | ||
strokeWidth="0.8" | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
/> | ||
<path | ||
d="M4 0.5H10C11.656 0.5 13 1.908 13 3.64286V8.35714C13 10.092 11.656 11.5 10 11.5H4C2.344 11.5 1 10.092 1 8.35714V3.64286C1 1.908 2.344 0.5 4 0.5Z" | ||
stroke={theme.themeKey === "dark" ? "#596782" : "#90a2c0"} | ||
strokeWidth="0.8" | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
/> | ||
<path | ||
d="M3.99869 3.64062H6.99869" | ||
stroke={theme.themeKey === "dark" ? "#596782" : "#90a2c0"} | ||
strokeWidth="0.8" | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
/> | ||
</svg> | ||
); | ||
}; | ||
|
||
export default IconWallet; |
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
Oops, something went wrong.