phone medical2 icon
phone-medical2 from Reicon by REICON · Outline · Call · MIT Free for personal and commercial use.
- Name
- phone-medical2
- Set
- Reicon
- Style
- Outline
- Category
- Call
- Viewbox
- 24×24
- License
- MIT
2 other variants in Reicon
More call icons from Reicon
Use the phone medical2 icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><g fill="currentColor" fill-rule="evenodd" clip-rule="evenodd"><path d="M22.75 7a5.75 5.75 0 1 0-10.9 2.56a.1.1 0 0 1 .013.04v.007l-.297 1.113a1.4 1.4 0 0 0 1.714 1.714l1.113-.298q-.002 0 0 0h.007a.1.1 0 0 1 .04.014A5.75 5.75 0 0 0 22.75 7m-8.356 5.136h-.002zM17 2.75a4.25 4.25 0 1 1-1.892 8.057a1.57 1.57 0 0 0-1.102-.12l-.946.253l.253-.946a1.57 1.57 0 0 0-.12-1.102A4.25 4.25 0 0 1 17 2.75"/><path d="M17 4.25a.75.75 0 0 1 .75.75v1.25H19a.75.75 0 0 1 0 1.5h-1.25V9a.75.75 0 0 1-1.5 0V7.75H15a.75.75 0 0 1 0-1.5h1.25V5a.75.75 0 0 1 .75-.75M3.007 6.407c1.68-1.68 4.516-1.552 5.685.544l.65 1.163c.763 1.368.438 3.095-.68 4.227a.63.63 0 0 0-.104.337c-.013.256.078.849.997 1.767c.918.918 1.51 1.01 1.767.997a.63.63 0 0 0 .337-.104c1.131-1.118 2.859-1.443 4.227-.68l1.163.65c2.096 1.17 2.224 4.005.544 5.685c-.899.898-2.094 1.697-3.498 1.75c-2.08.079-5.536-.459-8.958-3.88c-3.421-3.422-3.959-6.877-3.88-8.958c.053-1.405.852-2.6 1.75-3.498m4.376 1.275c-.6-1.074-2.21-1.32-3.315-.214c-.775.775-1.28 1.63-1.312 2.493c-.066 1.736.363 4.762 3.442 7.841s6.105 3.508 7.84 3.442c.863-.033 1.72-.537 2.494-1.312c1.106-1.106.86-2.716-.214-3.315l-1.163-.649c-.723-.403-1.74-.266-2.452.448c-.07.07-.517.486-1.308.524c-.81.04-1.791-.324-2.9-1.434c-1.111-1.11-1.475-2.091-1.435-2.902c.038-.791.455-1.237.524-1.306c.714-.714.851-1.73.448-2.453z"/></g></svg>
React
import type { SVGProps } from "react";
export function ReiconPhoneMedical2(props: SVGProps<SVGSVGElement>) {
return (
<svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><g fill="currentColor" fillRule="evenodd" clipRule="evenodd"><path d="M22.75 7a5.75 5.75 0 1 0-10.9 2.56a.1.1 0 0 1 .013.04v.007l-.297 1.113a1.4 1.4 0 0 0 1.714 1.714l1.113-.298q-.002 0 0 0h.007a.1.1 0 0 1 .04.014A5.75 5.75 0 0 0 22.75 7m-8.356 5.136h-.002zM17 2.75a4.25 4.25 0 1 1-1.892 8.057a1.57 1.57 0 0 0-1.102-.12l-.946.253l.253-.946a1.57 1.57 0 0 0-.12-1.102A4.25 4.25 0 0 1 17 2.75"/><path d="M17 4.25a.75.75 0 0 1 .75.75v1.25H19a.75.75 0 0 1 0 1.5h-1.25V9a.75.75 0 0 1-1.5 0V7.75H15a.75.75 0 0 1 0-1.5h1.25V5a.75.75 0 0 1 .75-.75M3.007 6.407c1.68-1.68 4.516-1.552 5.685.544l.65 1.163c.763 1.368.438 3.095-.68 4.227a.63.63 0 0 0-.104.337c-.013.256.078.849.997 1.767c.918.918 1.51 1.01 1.767.997a.63.63 0 0 0 .337-.104c1.131-1.118 2.859-1.443 4.227-.68l1.163.65c2.096 1.17 2.224 4.005.544 5.685c-.899.898-2.094 1.697-3.498 1.75c-2.08.079-5.536-.459-8.958-3.88c-3.421-3.422-3.959-6.877-3.88-8.958c.053-1.405.852-2.6 1.75-3.498m4.376 1.275c-.6-1.074-2.21-1.32-3.315-.214c-.775.775-1.28 1.63-1.312 2.493c-.066 1.736.363 4.762 3.442 7.841s6.105 3.508 7.84 3.442c.863-.033 1.72-.537 2.494-1.312c1.106-1.106.86-2.716-.214-3.315l-1.163-.649c-.723-.403-1.74-.266-2.452.448c-.07.07-.517.486-1.308.524c-.81.04-1.791-.324-2.9-1.434c-1.111-1.11-1.475-2.091-1.435-2.902c.038-.791.455-1.237.524-1.306c.714-.714.851-1.73.448-2.453z"/></g></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><g fill="currentColor" fill-rule="evenodd" clip-rule="evenodd"><path d="M22.75 7a5.75 5.75 0 1 0-10.9 2.56a.1.1 0 0 1 .013.04v.007l-.297 1.113a1.4 1.4 0 0 0 1.714 1.714l1.113-.298q-.002 0 0 0h.007a.1.1 0 0 1 .04.014A5.75 5.75 0 0 0 22.75 7m-8.356 5.136h-.002zM17 2.75a4.25 4.25 0 1 1-1.892 8.057a1.57 1.57 0 0 0-1.102-.12l-.946.253l.253-.946a1.57 1.57 0 0 0-.12-1.102A4.25 4.25 0 0 1 17 2.75"/><path d="M17 4.25a.75.75 0 0 1 .75.75v1.25H19a.75.75 0 0 1 0 1.5h-1.25V9a.75.75 0 0 1-1.5 0V7.75H15a.75.75 0 0 1 0-1.5h1.25V5a.75.75 0 0 1 .75-.75M3.007 6.407c1.68-1.68 4.516-1.552 5.685.544l.65 1.163c.763 1.368.438 3.095-.68 4.227a.63.63 0 0 0-.104.337c-.013.256.078.849.997 1.767c.918.918 1.51 1.01 1.767.997a.63.63 0 0 0 .337-.104c1.131-1.118 2.859-1.443 4.227-.68l1.163.65c2.096 1.17 2.224 4.005.544 5.685c-.899.898-2.094 1.697-3.498 1.75c-2.08.079-5.536-.459-8.958-3.88c-3.421-3.422-3.959-6.877-3.88-8.958c.053-1.405.852-2.6 1.75-3.498m4.376 1.275c-.6-1.074-2.21-1.32-3.315-.214c-.775.775-1.28 1.63-1.312 2.493c-.066 1.736.363 4.762 3.442 7.841s6.105 3.508 7.84 3.442c.863-.033 1.72-.537 2.494-1.312c1.106-1.106.86-2.716-.214-3.315l-1.163-.649c-.723-.403-1.74-.266-2.452.448c-.07.07-.517.486-1.308.524c-.81.04-1.791-.324-2.9-1.434c-1.111-1.11-1.475-2.091-1.435-2.902c.038-.791.455-1.237.524-1.306c.714-.714.851-1.73.448-2.453z"/></g></svg> </template>
CSS
.icon-phone-medical2 {
width: 24px;
height: 24px;
background-color: currentColor;
-webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cg%20fill%3D%22currentColor%22%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%3E%3Cpath%20d%3D%22M22.75%207a5.75%205.75%200%201%200-10.9%202.56a.1.1%200%200%201%20.013.04v.007l-.297%201.113a1.4%201.4%200%200%200%201.714%201.714l1.113-.298q-.002%200%200%200h.007a.1.1%200%200%201%20.04.014A5.75%205.75%200%200%200%2022.75%207m-8.356%205.136h-.002zM17%202.75a4.25%204.25%200%201%201-1.892%208.057a1.57%201.57%200%200%200-1.102-.12l-.946.253l.253-.946a1.57%201.57%200%200%200-.12-1.102A4.25%204.25%200%200%201%2017%202.75%22%2F%3E%3Cpath%20d%3D%22M17%204.25a.75.75%200%200%201%20.75.75v1.25H19a.75.75%200%200%201%200%201.5h-1.25V9a.75.75%200%200%201-1.5%200V7.75H15a.75.75%200%200%201%200-1.5h1.25V5a.75.75%200%200%201%20.75-.75M3.007%206.407c1.68-1.68%204.516-1.552%205.685.544l.65%201.163c.763%201.368.438%203.095-.68%204.227a.63.63%200%200%200-.104.337c-.013.256.078.849.997%201.767c.918.918%201.51%201.01%201.767.997a.63.63%200%200%200%20.337-.104c1.131-1.118%202.859-1.443%204.227-.68l1.163.65c2.096%201.17%202.224%204.005.544%205.685c-.899.898-2.094%201.697-3.498%201.75c-2.08.079-5.536-.459-8.958-3.88c-3.421-3.422-3.959-6.877-3.88-8.958c.053-1.405.852-2.6%201.75-3.498m4.376%201.275c-.6-1.074-2.21-1.32-3.315-.214c-.775.775-1.28%201.63-1.312%202.493c-.066%201.736.363%204.762%203.442%207.841s6.105%203.508%207.84%203.442c.863-.033%201.72-.537%202.494-1.312c1.106-1.106.86-2.716-.214-3.315l-1.163-.649c-.723-.403-1.74-.266-2.452.448c-.07.07-.517.486-1.308.524c-.81.04-1.791-.324-2.9-1.434c-1.111-1.11-1.475-2.091-1.435-2.902c.038-.791.455-1.237.524-1.306c.714-.714.851-1.73.448-2.453z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center / contain;
mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cg%20fill%3D%22currentColor%22%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%3E%3Cpath%20d%3D%22M22.75%207a5.75%205.75%200%201%200-10.9%202.56a.1.1%200%200%201%20.013.04v.007l-.297%201.113a1.4%201.4%200%200%200%201.714%201.714l1.113-.298q-.002%200%200%200h.007a.1.1%200%200%201%20.04.014A5.75%205.75%200%200%200%2022.75%207m-8.356%205.136h-.002zM17%202.75a4.25%204.25%200%201%201-1.892%208.057a1.57%201.57%200%200%200-1.102-.12l-.946.253l.253-.946a1.57%201.57%200%200%200-.12-1.102A4.25%204.25%200%200%201%2017%202.75%22%2F%3E%3Cpath%20d%3D%22M17%204.25a.75.75%200%200%201%20.75.75v1.25H19a.75.75%200%200%201%200%201.5h-1.25V9a.75.75%200%200%201-1.5%200V7.75H15a.75.75%200%200%201%200-1.5h1.25V5a.75.75%200%200%201%20.75-.75M3.007%206.407c1.68-1.68%204.516-1.552%205.685.544l.65%201.163c.763%201.368.438%203.095-.68%204.227a.63.63%200%200%200-.104.337c-.013.256.078.849.997%201.767c.918.918%201.51%201.01%201.767.997a.63.63%200%200%200%20.337-.104c1.131-1.118%202.859-1.443%204.227-.68l1.163.65c2.096%201.17%202.224%204.005.544%205.685c-.899.898-2.094%201.697-3.498%201.75c-2.08.079-5.536-.459-8.958-3.88c-3.421-3.422-3.959-6.877-3.88-8.958c.053-1.405.852-2.6%201.75-3.498m4.376%201.275c-.6-1.074-2.21-1.32-3.315-.214c-.775.775-1.28%201.63-1.312%202.493c-.066%201.736.363%204.762%203.442%207.841s6.105%203.508%207.84%203.442c.863-.033%201.72-.537%202.494-1.312c1.106-1.106.86-2.716-.214-3.315l-1.163-.649c-.723-.403-1.74-.266-2.452.448c-.07.07-.517.486-1.308.524c-.81.04-1.791-.324-2.9-1.434c-1.111-1.11-1.475-2.091-1.435-2.902c.038-.791.455-1.237.524-1.306c.714-.714.851-1.73.448-2.453z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/reicon/phone-medical2.svg?color=%231a73e8&size=48