Skip to content
4 changes: 4 additions & 0 deletions app/component-library/components/Icons/Icon/Icon.assets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,8 @@ import descriptionSVG from './assets/description.svg';
import detailsSVG from './assets/details.svg';
import diagramSVG from './assets/diagram.svg';
import documentcodeSVG from './assets/document-code.svg';
import dollarSVG from './assets/dollar.svg';
import dollarfilledSVG from './assets/dollar-filled.svg';
import downloadSVG from './assets/download.svg';
import draftSVG from './assets/draft.svg';
import ecoleafSVG from './assets/eco-leaf.svg';
Expand Down Expand Up @@ -372,6 +374,8 @@ export const assetByIconName: AssetByIconName = {
[IconName.Details]: detailsSVG,
[IconName.Diagram]: diagramSVG,
[IconName.DocumentCode]: documentcodeSVG,
[IconName.Dollar]: dollarSVG,
[IconName.DollarFilled]: dollarfilledSVG,
[IconName.Download]: downloadSVG,
[IconName.Draft]: draftSVG,
[IconName.EcoLeaf]: ecoleafSVG,
Expand Down
2 changes: 2 additions & 0 deletions app/component-library/components/Icons/Icon/Icon.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,8 @@ export enum IconName {
Details = 'Details',
Diagram = 'Diagram',
DocumentCode = 'DocumentCode',
Dollar = 'Dollar',
DollarFilled = 'DollarFilled',
Download = 'Download',
Draft = 'Draft',
EcoLeaf = 'EcoLeaf',
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions app/component-library/components/Icons/Icon/assets/dollar.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const ICON_BY_TAB_BAR_ICON_KEY: IconByTabBarIconKey = {
[TabBarIconKey.Setting]: IconName.Setting,
[TabBarIconKey.Rewards]: IconName.MetamaskFoxOutline,
[TabBarIconKey.Trending]: IconName.Search,
[TabBarIconKey.Money]: IconName.Bank,
[TabBarIconKey.Money]: IconName.Dollar,
};

export const LABEL_BY_TAB_BAR_ICON_KEY = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const FILLED_ICONS: Partial<Record<TabBarIconKey, IconName>> = {
[TabBarIconKey.Activity]: IconName.ClockFilled,
[TabBarIconKey.Trending]: IconName.Search,
[TabBarIconKey.Rewards]: IconName.MetamaskFoxFilled,
[TabBarIconKey.Money]: IconName.Bank,
[TabBarIconKey.Money]: IconName.DollarFilled,
};

const TabBar = ({ state, descriptors, navigation }: TabBarProps) => {
Expand Down
Loading