Skip to content

Commit

Permalink
Merge pull request #33607 from shubham1206agra/fix-plaid-icon
Browse files Browse the repository at this point in the history
Fixed icon fill colors
  • Loading branch information
mountiny authored Jan 9, 2024
2 parents 0899e3a + bd6a858 commit b338f53
Show file tree
Hide file tree
Showing 8 changed files with 2 additions and 9 deletions.
1 change: 0 additions & 1 deletion src/components/AddPlaidBankAccount.js
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,6 @@ function AddPlaidBankAccount({
height={iconSize}
width={iconSize}
additionalStyles={iconStyles}
fill={theme.icon}
/>
<Text style={[styles.ml3, styles.textStrong]}>{bankName}</Text>
</View>
Expand Down
2 changes: 1 addition & 1 deletion src/components/AvatarCropModal/ImageCropView.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ function ImageCropView(props) {
<View style={[containerStyle, styles.l0, styles.b0, styles.pAbsolute]}>
<Icon
src={props.maskImage}
fill={theme.icon}
fill={theme.iconReversed}
width={props.containerSize}
height={props.containerSize}
/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ function DeeplinkRedirectLoadingIndicator({openLinkInBrowser, session}: Deeplink
<Icon
width={200}
height={164}
fill={theme.icon}
src={Illustrations.RocketBlue}
/>
</View>
Expand Down
1 change: 0 additions & 1 deletion src/components/MenuItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,6 @@ function MenuItem(
src={furtherDetailsIcon}
height={variables.iconSizeNormal}
width={variables.iconSizeNormal}
fill={theme.icon}
inline
/>
)}
Expand Down
1 change: 0 additions & 1 deletion src/components/ValidateCode/ValidateCodeModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ function ValidateCodeModal({code, accountID, session = {}}: ValidateCodeModalPro
<Icon
width={variables.modalTopIconWidth}
height={variables.modalTopIconHeight}
fill={theme.icon}
src={Illustrations.MagicCode}
/>
</View>
Expand Down
1 change: 0 additions & 1 deletion src/pages/LogInWithShortLivedAuthTokenPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,6 @@ function LogInWithShortLivedAuthTokenPage(props) {
<Icon
width={200}
height={164}
fill={theme.icon}
src={Illustrations.RocketBlue}
/>
</View>
Expand Down
3 changes: 0 additions & 3 deletions src/pages/home/report/ReportDropUI.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import Icon from '@components/Icon';
import * as Expensicons from '@components/Icon/Expensicons';
import Text from '@components/Text';
import useLocalize from '@hooks/useLocalize';
import useTheme from '@hooks/useTheme';
import useThemeStyles from '@hooks/useThemeStyles';

const propTypes = {
Expand All @@ -15,15 +14,13 @@ const propTypes = {
};

function ReportDropUI({onDrop}) {
const theme = useTheme();
const styles = useThemeStyles();
const {translate} = useLocalize();
return (
<DragAndDropConsumer onDrop={onDrop}>
<View style={[styles.reportDropOverlay, styles.w100, styles.h100, styles.justifyContentCenter, styles.alignItemsCenter]}>
<View style={styles.mb3}>
<Icon
fill={theme.icon}
src={Expensicons.DragAndDrop}
width={100}
height={100}
Expand Down
1 change: 1 addition & 0 deletions src/pages/settings/Wallet/TransferBalancePage.js
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,7 @@ function TransferBalancePage(props) {
iconHeight={selectedAccount.iconSize}
icon={selectedAccount.icon}
onPress={() => navigateToChooseTransferAccount(selectedAccount.accountType)}
displayInDefaultIconColor
/>
)}
<View style={styles.ph5}>
Expand Down

0 comments on commit b338f53

Please sign in to comment.