Set contact icons for phone, website, and email

This commit is contained in:
Karey Higuera
2020-09-18 10:20:32 -05:00
parent 1c25ffe037
commit 054dec5b68
2 changed files with 6 additions and 0 deletions

View File

@ -37,16 +37,19 @@ const ContactB = () => {
<ContactItem
label={t('shared.forms.phone')}
value={data.profile.phone}
icon="phone"
link={`tel:${data.profile.phone}`}
/>
<ContactItem
label={t('shared.forms.website')}
value={data.profile.website}
icon="website"
link={data.profile.website}
/>
<ContactItem
label={t('shared.forms.email')}
value={data.profile.email}
icon="email"
link={`mailto:${data.profile.email}`}
/>