import React from 'react';
import { Image, Pressable, StyleSheet, View } from 'react-native';
export const BackButton = () => {
return (
{
goBack();
}}>
)
}
export const BackIcon = () => {
return
}
export const StationBack = ({bottom = 24}) => {
return (
);
}
export const Styles = StyleSheet.create({
toolbar: {
height: toolbarSize,
paddingLeft: 2,
paddingRight: 2,
paddingTop: isIOS ? statusHeight : 0,
alignItems: 'center',
flexDirection: 'row',
justifyContent: 'center',
backgroundColor: colorPrimary
},
backIcon: {
width: 48,
height: 48,
alignItems: 'center',
justifyContent: 'center'
},
content: {
flex: 1,
paddingRight: 48,
alignItems: 'center'
},
logo: {
width:123.8,
height: 38.95
}
});
export default Toolbar = (props) => {
return (
)
}