You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
389 B
20 lines
389 B
import { StyleSheet } from 'react-native';
|
|
|
|
/*
|
|
Stylesheet for the BotBar component
|
|
*/
|
|
|
|
export default StyleSheet.create({
|
|
footer: {
|
|
flex: 0.15,
|
|
flexDirection: 'row',
|
|
backgroundColor: '#2D2C33',
|
|
width: '100%',
|
|
justifyContent: 'space-evenly',
|
|
alignItems: 'center',
|
|
},
|
|
icon: {
|
|
width: 65,
|
|
height: 65,
|
|
},
|
|
}); |