diff --git a/mobile-app/app/components/icons/assets/XCHF.tsx b/mobile-app/app/components/icons/assets/XCHF.tsx new file mode 100644 index 0000000000..5314e74790 --- /dev/null +++ b/mobile-app/app/components/icons/assets/XCHF.tsx @@ -0,0 +1,18 @@ +import Svg, { Path, SvgProps } from "react-native-svg"; + +export function XCHF(props: SvgProps): JSX.Element { + return ( + + + + + ); +} diff --git a/mobile-app/app/components/icons/assets/dSUI.tsx b/mobile-app/app/components/icons/assets/dSUI.tsx new file mode 100644 index 0000000000..38ad607ac9 --- /dev/null +++ b/mobile-app/app/components/icons/assets/dSUI.tsx @@ -0,0 +1,25 @@ +import Svg, { ClipPath, Defs, G, Path, Rect, SvgProps } from "react-native-svg"; + +export function dSUI(props: SvgProps): JSX.Element { + return ( + + + + + + + + + + + + ); +} diff --git a/mobile-app/app/components/icons/assets/dXCHF.tsx b/mobile-app/app/components/icons/assets/dXCHF.tsx new file mode 100644 index 0000000000..fa490cf7dc --- /dev/null +++ b/mobile-app/app/components/icons/assets/dXCHF.tsx @@ -0,0 +1,18 @@ +import Svg, { Path, SvgProps } from "react-native-svg"; + +export function dXCHF(props: SvgProps): JSX.Element { + return ( + + + + + ); +} diff --git a/mobile-app/app/components/icons/assets/index.ts b/mobile-app/app/components/icons/assets/index.ts index 399e893b47..d95319e877 100644 --- a/mobile-app/app/components/icons/assets/index.ts +++ b/mobile-app/app/components/icons/assets/index.ts @@ -18,6 +18,9 @@ import { MATIC } from "./MATIC"; import { dDOT } from "./dDOT"; import { dMATIC } from "./dMATIC"; import { dSOL } from "./dSOL"; +import { dSUI } from "./dSUI"; +import { XCHF } from "./XCHF"; +import { dXCHF } from "./dXCHF"; const mapping: Record JSX.Element> = { _UTXO: DFI, @@ -43,6 +46,9 @@ const mapping: Record JSX.Element> = { dDOT: dDOT, dMATIC: dMATIC, dSOL: dSOL, + dSUI: dSUI, + XCHF: XCHF, + dXCHF: dXCHF, }; /**