Resolve colors and app icon
This commit is contained in:
@@ -29,7 +29,7 @@ const Letter = styled.Text`
|
||||
text-align: center;
|
||||
padding: 1px 0;
|
||||
font-size: 12px;
|
||||
color: salmon;
|
||||
color: #FF3C00;
|
||||
`;
|
||||
|
||||
interface Props {
|
||||
|
||||
@@ -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>
|
||||
);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user