fix: update color

This commit is contained in:
GleidsonDaniel 2024-05-20 14:35:39 -04:00
parent b6d2646542
commit 49109b6428
1 changed files with 3 additions and 7 deletions

View File

@ -2,14 +2,10 @@ import React from 'react';
import { CustomIcon } from '../../../CustomIcon';
import styles from '../../styles';
import { useTheme } from '../../../../theme';
const Pinned = React.memo(({ pinned, testID }: { pinned?: boolean; testID?: string }) => {
const { colors } = useTheme();
if (pinned) {
return <CustomIcon testID={testID} name='pin' color={colors.auxiliaryTintColor} size={16} style={styles.rightIcons} />;
}
const Pinned = ({ pinned, testID }: { pinned?: boolean; testID?: string }): React.ReactElement | null => {
if (pinned) return <CustomIcon testID={testID} name='pin' size={16} style={styles.rightIcons} />;
return null;
});
};
export default Pinned;