diff --git a/app/components/basicInfo/BasicInfoCard.js b/app/components/basicInfo/BasicInfoCard.js index a180eb8..33bf3ab 100644 --- a/app/components/basicInfo/BasicInfoCard.js +++ b/app/components/basicInfo/BasicInfoCard.js @@ -2,8 +2,9 @@ import { CoreAvatar, CoreH6, CoreTypographyBody1, - CoreTypographyCaption, + CoreIconButton, CoreBox, + CoreIcon, CoreGrid, CoreClasses, getFullName, @@ -19,7 +20,27 @@ export default function BasicInfoCard(props) { const { firstName, middleName, lastName, gender, dob, bio, photo } = props; - + const CustomIconTooltipText = (props) =>{ + return ( + + + {props?.icon !== undefined ? + + {props?.icon} + : null + } + + {props?.children} + + ); + }; const getGender = (gender, iconFlag = false) => { let genderTmp = "unknown"; @@ -75,14 +96,37 @@ export default function BasicInfoCard(props) { - - - - {" | "} - - + + + + + + + + + + diff --git a/app/components/contactInfo/ContactInfoCard.js b/app/components/contactInfo/ContactInfoCard.js index d05c32b..5d5001b 100644 --- a/app/components/contactInfo/ContactInfoCard.js +++ b/app/components/contactInfo/ContactInfoCard.js @@ -21,26 +21,26 @@ export default function ContactInfoCard(props) { const { phone, email, profileLink, website } = props; return ( + <> - Contact Info - } - action={ + + Contact Info { navigate("/settings#account"); }} + styleClasses={[CoreClasses.PADDING.PR0]} > edit_note - } - /> + + + - +