import { View, Text } from "react-native-ui-lib"; import React from "react"; import { StyleSheet } from "react-native"; const MyGroup = () => { return ( Family Caregivers ); }; 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;