mattermost-mobile/app/screens/settings/settings_item/style.android.js
Miguel Alatzar 57d60649f8
[MM-22959] Use Compass icons (#4847)
* Use Compass icons

* Update ChannelInfo and AdvancedSettings

* Fix search modifiers

* Fix Autocomplete item

* Remove VectorIcon component

* Unlink react-native-vector-icons

* Revert ProgressiveImage changes

* Update Mark as Unread icon

* Apply review suggestion

* Replace extension icons

* Update video control button style

* Replace (un)flag with (un)save

* Replace (un)flag with (un)save - take 2

* Use bookmark-outline icon

Co-authored-by: Miguel Alatzar <miguel@Miguels-MacBook-Pro.local>
2020-10-15 15:34:24 -07:00

57 lines
1.5 KiB
JavaScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import {changeOpacity, makeStyleSheetFromTheme} from 'app/utils/theme';
export default makeStyleSheetFromTheme((theme) => {
return {
container: {
alignItems: 'center',
backgroundColor: theme.centerChannelBg,
flexDirection: 'row',
height: 68,
},
linkContainer: {
marginHorizontal: 15,
color: theme.linkColor,
},
iconContainer: {
marginHorizontal: 15,
},
icon: {
color: theme.buttonBg,
fontSize: 24,
},
wrapper: {
flex: 1,
},
centerLabel: {
textAlign: 'center',
textAlignVertical: 'center',
},
labelContainer: {
flex: 1,
flexDirection: 'row',
},
label: {
color: theme.centerChannelColor,
flex: 1,
fontSize: 17,
textAlignVertical: 'center',
includeFontPadding: false,
paddingRight: 15,
},
divider: {
backgroundColor: changeOpacity(theme.centerChannelColor, 0.1),
height: 1,
},
arrowContainer: {
alignItems: 'center',
justifyContent: 'center',
paddingRight: 15,
},
destructor: {
color: theme.errorTextColor,
},
};
});