diff --git a/src/components/icons/assets/tokens/dSUI.tsx b/src/components/icons/assets/tokens/dSUI.tsx new file mode 100644 index 000000000..ee9b888de --- /dev/null +++ b/src/components/icons/assets/tokens/dSUI.tsx @@ -0,0 +1,37 @@ +import { SVGProps } from "react"; + +export function dSUI(props: SVGProps): JSX.Element { + return ( + + + + + + + + + + + + + + + + + ); +} diff --git a/src/components/icons/assets/tokens/index.ts b/src/components/icons/assets/tokens/index.ts index 84b5503bf..2d2763a02 100644 --- a/src/components/icons/assets/tokens/index.ts +++ b/src/components/icons/assets/tokens/index.ts @@ -25,6 +25,7 @@ import { SOL } from "./SOL"; import { dDOT } from "./dDOT"; import { dSOL } from "./dSOL"; import { dMATIC } from "./dMATIC"; +import { dSUI } from "./dSUI"; const mapping: Record) => JSX.Element> = { @@ -57,6 +58,7 @@ const mapping: Record) => JSX.Element> = dMATIC: dMATIC, dDOT: dDOT, dSOL: dSOL, + dSUI: dSUI, }; // TODO(@defich): move assets into it's own repo where anyone can create pull request into.