Skip to content

Commit

Permalink
feat: added SUSHI token to frontend
Browse files Browse the repository at this point in the history
  • Loading branch information
ZakMooney committed Apr 17, 2024
1 parent 203df80 commit 5d271f5
Show file tree
Hide file tree
Showing 2 changed files with 65 additions and 0 deletions.
56 changes: 56 additions & 0 deletions src/assets/sushilogo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions src/components/collateral/VaultToken.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ import paxglogo from "../../assets/paxglogo.svg";
import arblogo from "../../assets/arblogo.svg";
import gmxlogo from "../../assets/gmxlogo.svg";
import rdntlogo from "../../assets/rdntlogo.svg";
import sushilogo from "../../assets/sushilogo.svg";
import Button from "../../components/Button";

const tokenIcon = (symbol: any) => {
Expand Down Expand Up @@ -83,6 +84,14 @@ const tokenIcon = (symbol: any) => {
src={rdntlogo}
alt="rdnt logo"
/>
);
case 'SUSHI':
return (
<img
style={{ height: "2rem", width: "2rem" }}
src={sushilogo}
alt="sushi logo"
/>
);
default:
return (
Expand Down

0 comments on commit 5d271f5

Please sign in to comment.