Merged in fix/phone-icon (pull request #3465)
fix/SW-3695-icons * fix/SW-3695-icons
This commit is contained in:
@@ -93,11 +93,7 @@ export default async function IntroSection({
|
||||
>
|
||||
<div className={styles.phoneNumber}>
|
||||
<TextLink href={`tel:${phoneNumber}`} typography="Link/sm">
|
||||
<MaterialIcon
|
||||
icon="phone_enabled"
|
||||
color="CurrentColor"
|
||||
size={20}
|
||||
/>
|
||||
<MaterialIcon icon="call" color="CurrentColor" size={20} />
|
||||
{phoneNumber}
|
||||
</TextLink>
|
||||
<LocalCallCharges
|
||||
|
||||
@@ -84,7 +84,7 @@ export default async function Profile() {
|
||||
value: user.dateOfBirth,
|
||||
},
|
||||
{
|
||||
icon: "phone_enabled",
|
||||
icon: "call",
|
||||
label: intl.formatMessage({
|
||||
id: "common.phoneNumber",
|
||||
defaultMessage: "Phone number",
|
||||
|
||||
@@ -67,7 +67,7 @@ export default async function ContactRow({ contact }: ContactRowProps) {
|
||||
}
|
||||
|
||||
function PhoneIcon(props: MaterialIconSetIconProps) {
|
||||
return <MaterialIcon icon="phone_enabled" {...props} />
|
||||
return <MaterialIcon icon="call" {...props} />
|
||||
}
|
||||
function MailIcon(props: MaterialIconSetIconProps) {
|
||||
return <MaterialIcon icon="mail" {...props} />
|
||||
|
||||
Reference in New Issue
Block a user