mirror of
https://github.com/LBRYFoundation/lbry-android.git
synced 2025-08-23 17:47:28 +00:00
40 lines
681 B
JavaScript
40 lines
681 B
JavaScript
import { StyleSheet } from 'react-native';
|
|
import Colors from './colors';
|
|
|
|
const buttonStyle = StyleSheet.create({
|
|
button: {
|
|
borderRadius: 24,
|
|
padding: 8,
|
|
paddingLeft: 12,
|
|
paddingRight: 12,
|
|
alignItems: 'center',
|
|
justifyContent: 'center'
|
|
},
|
|
disabled: {
|
|
backgroundColor: '#999999'
|
|
},
|
|
row: {
|
|
flexDirection: 'row'
|
|
},
|
|
iconLight: {
|
|
color: Colors.White,
|
|
},
|
|
iconDark: {
|
|
color: Colors.DarkGrey,
|
|
},
|
|
textLight: {
|
|
color: Colors.White,
|
|
},
|
|
textDark: {
|
|
color: Colors.DarkGrey
|
|
},
|
|
text: {
|
|
fontFamily: 'Inter-UI-Regular',
|
|
fontSize: 14
|
|
},
|
|
textWithIcon: {
|
|
marginLeft: 8
|
|
}
|
|
});
|
|
|
|
export default buttonStyle;
|