mirror of
https://github.com/urosran/cally.git
synced 2025-07-16 01:56:16 +00:00
44 lines
825 B
TypeScript
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;
|