Resolve colors and app icon

This commit is contained in:
Lei Nelissen
2020-07-07 14:40:03 +02:00
parent 1f0db4c71d
commit a458164ee7
63 changed files with 25 additions and 50 deletions

View File

@@ -16,8 +16,8 @@ const Container = styled.TouchableOpacity`
const ListButton: React.FC<TouchableOpacityProps> = ({ children, ...props }) => {
return (
<Container {...props}>
<Text style={{ color: 'salmon', fontSize: 16 }}>{children}</Text>
<ChevronRight width={BUTTON_SIZE} height={BUTTON_SIZE} fill="salmon" />
<Text style={{ color: '#FF3C00', fontSize: 16 }}>{children}</Text>
<ChevronRight width={BUTTON_SIZE} height={BUTTON_SIZE} fill="#FF3C00" />
</Container>
);
};