Zipline-Android-App/styles/components/userAvatar.ts
2025-02-08 21:36:49 +01:00

28 lines
485 B
TypeScript

import { StyleSheet } from "react-native";
export const styles = StyleSheet.create({
userMenuContainer: {
flexWrap: "wrap",
flexDirection: "row",
marginRight: 5,
},
userMenuAvatar: {
borderRadius: 8,
},
userMenuText: {
color: "white",
fontWeight: "bold",
marginLeft: 10,
marginTop: 5,
fontSize: 18,
},
userMenuTextWithSettingsIcon: {
marginLeft: 0,
},
settingsIcon: {
width: 38,
height: 38,
justifyContent: "center",
alignItems: "center",
},
});