diff --git a/native/chat/settings/thread-settings-list-action.react.js b/native/chat/settings/thread-settings-list-action.react.js index 3510b5560..de750c924 100644 --- a/native/chat/settings/thread-settings-list-action.react.js +++ b/native/chat/settings/thread-settings-list-action.react.js @@ -1,152 +1,152 @@ // @flow import * as React from 'react'; import { View, Text, Platform } from 'react-native'; import type { IoniconsGlyphs } from 'react-native-vector-icons/Ionicons'; import Icon from 'react-native-vector-icons/Ionicons'; import Button from '../../components/button.react'; import { useStyles } from '../../themes/colors'; import type { ViewStyle, TextStyle } from '../../types/styles'; type ListActionProps = {| +onPress: () => void, +text: string, +iconName: IoniconsGlyphs, +iconSize: number, +iconStyle?: TextStyle, +buttonStyle?: ViewStyle, +styles: typeof unboundStyles, |}; function ThreadSettingsListAction(props: ListActionProps) { return ( ); } type SeeMoreProps = {| +onPress: () => void, |}; function ThreadSettingsSeeMore(props: SeeMoreProps) { const styles = useStyles(unboundStyles); return ( ); } type AddMemberProps = {| +onPress: () => void, |}; function ThreadSettingsAddMember(props: AddMemberProps) { const styles = useStyles(unboundStyles); return ( ); } type AddChildThreadProps = {| +onPress: () => void, |}; function ThreadSettingsAddSubthread(props: AddChildThreadProps) { const styles = useStyles(unboundStyles); return ( ); } const unboundStyles = { addSubthreadButton: { paddingTop: Platform.OS === 'ios' ? 4 : 1, }, addIcon: { - color: '#009900', + color: 'link', }, addItemRow: { backgroundColor: 'panelForeground', paddingHorizontal: 12, }, addMemberButton: { paddingTop: Platform.OS === 'ios' ? 4 : 1, }, container: { flex: 1, flexDirection: 'row', paddingHorizontal: 12, paddingVertical: 8, justifyContent: 'center', }, icon: { lineHeight: 20, }, seeMoreButton: { paddingBottom: Platform.OS === 'ios' ? 4 : 2, paddingTop: Platform.OS === 'ios' ? 2 : 0, }, seeMoreContents: { borderColor: 'panelForegroundBorder', borderTopWidth: 1, }, seeMoreIcon: { color: 'link', position: 'absolute', right: 10, top: Platform.OS === 'android' ? 17 : 15, }, seeMoreRow: { backgroundColor: 'panelForeground', paddingHorizontal: 12, }, text: { color: 'link', flex: 1, fontSize: 16, fontStyle: 'italic', }, }; export { ThreadSettingsSeeMore, ThreadSettingsAddMember, ThreadSettingsAddSubthread, };