Files
cally/components/pages/settings/user_settings_views/MyGroup.tsx
2024-09-19 21:38:37 +02:00

44 lines
825 B
TypeScript

import { View, Text } from "react-native-ui-lib";
import React from "react";
import { StyleSheet } from "react-native";
const MyGroup = () => {
return (
<View>
<View style={styles.card}>
<Text text70 marginV-10>
Family
</Text>
<Text text70 marginB-10 marginT-15>
Caregivers
</Text>
</View>
</View>
);
};
const styles = StyleSheet.create({
card: {
marginVertical: 15,
backgroundColor: "white",
width: "100%",
borderRadius: 15,
padding: 20,
},
pfp: {
aspectRatio: 1,
width: 60,
backgroundColor: "green",
borderRadius: 20,
},
txtBox: {
backgroundColor: "#fafafa",
borderRadius: 50,
borderWidth: 2,
borderColor: "#cecece",
padding: 15,
height: 45,
},
});
export default MyGroup;