fix: update color
This commit is contained in:
parent
b6d2646542
commit
49109b6428
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue