phone from Prime Icons by PrimeTek · Regular · MIT Free for personal and commercial use.

Name
phone
Set
Prime Icons
Style
Regular
Viewbox
24×24
License
MIT

The same icon in other sets

Use the phone icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M18.4 20.75h-.23a16.7 16.7 0 0 1-7.27-2.58a16.6 16.6 0 0 1-5.06-5.05a16.7 16.7 0 0 1-2.58-7.29A2.3 2.3 0 0 1 3.8 4.1a2.32 2.32 0 0 1 1.6-.84H8a2.36 2.36 0 0 1 2.33 2a9.3 9.3 0 0 0 .53 2.09a2.37 2.37 0 0 1-.54 2.49l-.61.61a12 12 0 0 0 3.77 3.75l.61-.6a2.37 2.37 0 0 1 2.49-.54a9.6 9.6 0 0 0 2.09.53a2.35 2.35 0 0 1 2 2.38v2.4a2.36 2.36 0 0 1-2.35 2.36ZM8 4.75H5.61a.87.87 0 0 0-.61.31a.83.83 0 0 0-.2.62a15.2 15.2 0 0 0 2.31 6.62a15 15 0 0 0 4.59 4.59a15.34 15.34 0 0 0 6.63 2.36A.9.9 0 0 0 19 19a.88.88 0 0 0 .25-.61V16a.86.86 0 0 0-.74-.87a11.4 11.4 0 0 1-2.42-.6a.87.87 0 0 0-.91.19l-1 1a.76.76 0 0 1-.9.12a13.53 13.53 0 0 1-5.11-5.1a.74.74 0 0 1 .12-.9l1-1a.85.85 0 0 0 .19-.9a11.3 11.3 0 0 1-.6-2.42a.87.87 0 0 0-.88-.77"/></svg>

React

import type { SVGProps } from "react";

export function PrimePhone(props: SVGProps<SVGSVGElement>) {
  return (
    <svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M18.4 20.75h-.23a16.7 16.7 0 0 1-7.27-2.58a16.6 16.6 0 0 1-5.06-5.05a16.7 16.7 0 0 1-2.58-7.29A2.3 2.3 0 0 1 3.8 4.1a2.32 2.32 0 0 1 1.6-.84H8a2.36 2.36 0 0 1 2.33 2a9.3 9.3 0 0 0 .53 2.09a2.37 2.37 0 0 1-.54 2.49l-.61.61a12 12 0 0 0 3.77 3.75l.61-.6a2.37 2.37 0 0 1 2.49-.54a9.6 9.6 0 0 0 2.09.53a2.35 2.35 0 0 1 2 2.38v2.4a2.36 2.36 0 0 1-2.35 2.36ZM8 4.75H5.61a.87.87 0 0 0-.61.31a.83.83 0 0 0-.2.62a15.2 15.2 0 0 0 2.31 6.62a15 15 0 0 0 4.59 4.59a15.34 15.34 0 0 0 6.63 2.36A.9.9 0 0 0 19 19a.88.88 0 0 0 .25-.61V16a.86.86 0 0 0-.74-.87a11.4 11.4 0 0 1-2.42-.6a.87.87 0 0 0-.91.19l-1 1a.76.76 0 0 1-.9.12a13.53 13.53 0 0 1-5.11-5.1a.74.74 0 0 1 .12-.9l1-1a.85.85 0 0 0 .19-.9a11.3 11.3 0 0 1-.6-2.42a.87.87 0 0 0-.88-.77"/></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M18.4 20.75h-.23a16.7 16.7 0 0 1-7.27-2.58a16.6 16.6 0 0 1-5.06-5.05a16.7 16.7 0 0 1-2.58-7.29A2.3 2.3 0 0 1 3.8 4.1a2.32 2.32 0 0 1 1.6-.84H8a2.36 2.36 0 0 1 2.33 2a9.3 9.3 0 0 0 .53 2.09a2.37 2.37 0 0 1-.54 2.49l-.61.61a12 12 0 0 0 3.77 3.75l.61-.6a2.37 2.37 0 0 1 2.49-.54a9.6 9.6 0 0 0 2.09.53a2.35 2.35 0 0 1 2 2.38v2.4a2.36 2.36 0 0 1-2.35 2.36ZM8 4.75H5.61a.87.87 0 0 0-.61.31a.83.83 0 0 0-.2.62a15.2 15.2 0 0 0 2.31 6.62a15 15 0 0 0 4.59 4.59a15.34 15.34 0 0 0 6.63 2.36A.9.9 0 0 0 19 19a.88.88 0 0 0 .25-.61V16a.86.86 0 0 0-.74-.87a11.4 11.4 0 0 1-2.42-.6a.87.87 0 0 0-.91.19l-1 1a.76.76 0 0 1-.9.12a13.53 13.53 0 0 1-5.11-5.1a.74.74 0 0 1 .12-.9l1-1a.85.85 0 0 0 .19-.9a11.3 11.3 0 0 1-.6-2.42a.87.87 0 0 0-.88-.77"/></svg>
</template>

CSS

.icon-phone {
  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%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M18.4%2020.75h-.23a16.7%2016.7%200%200%201-7.27-2.58a16.6%2016.6%200%200%201-5.06-5.05a16.7%2016.7%200%200%201-2.58-7.29A2.3%202.3%200%200%201%203.8%204.1a2.32%202.32%200%200%201%201.6-.84H8a2.36%202.36%200%200%201%202.33%202a9.3%209.3%200%200%200%20.53%202.09a2.37%202.37%200%200%201-.54%202.49l-.61.61a12%2012%200%200%200%203.77%203.75l.61-.6a2.37%202.37%200%200%201%202.49-.54a9.6%209.6%200%200%200%202.09.53a2.35%202.35%200%200%201%202%202.38v2.4a2.36%202.36%200%200%201-2.35%202.36ZM8%204.75H5.61a.87.87%200%200%200-.61.31a.83.83%200%200%200-.2.62a15.2%2015.2%200%200%200%202.31%206.62a15%2015%200%200%200%204.59%204.59a15.34%2015.34%200%200%200%206.63%202.36A.9.9%200%200%200%2019%2019a.88.88%200%200%200%20.25-.61V16a.86.86%200%200%200-.74-.87a11.4%2011.4%200%200%201-2.42-.6a.87.87%200%200%200-.91.19l-1%201a.76.76%200%200%201-.9.12a13.53%2013.53%200%200%201-5.11-5.1a.74.74%200%200%201%20.12-.9l1-1a.85.85%200%200%200%20.19-.9a11.3%2011.3%200%200%201-.6-2.42a.87.87%200%200%200-.88-.77%22%2F%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%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M18.4%2020.75h-.23a16.7%2016.7%200%200%201-7.27-2.58a16.6%2016.6%200%200%201-5.06-5.05a16.7%2016.7%200%200%201-2.58-7.29A2.3%202.3%200%200%201%203.8%204.1a2.32%202.32%200%200%201%201.6-.84H8a2.36%202.36%200%200%201%202.33%202a9.3%209.3%200%200%200%20.53%202.09a2.37%202.37%200%200%201-.54%202.49l-.61.61a12%2012%200%200%200%203.77%203.75l.61-.6a2.37%202.37%200%200%201%202.49-.54a9.6%209.6%200%200%200%202.09.53a2.35%202.35%200%200%201%202%202.38v2.4a2.36%202.36%200%200%201-2.35%202.36ZM8%204.75H5.61a.87.87%200%200%200-.61.31a.83.83%200%200%200-.2.62a15.2%2015.2%200%200%200%202.31%206.62a15%2015%200%200%200%204.59%204.59a15.34%2015.34%200%200%200%206.63%202.36A.9.9%200%200%200%2019%2019a.88.88%200%200%200%20.25-.61V16a.86.86%200%200%200-.74-.87a11.4%2011.4%200%200%201-2.42-.6a.87.87%200%200%200-.91.19l-1%201a.76.76%200%200%201-.9.12a13.53%2013.53%200%200%201-5.11-5.1a.74.74%200%200%201%20.12-.9l1-1a.85.85%200%200%200%20.19-.9a11.3%2011.3%200%200%201-.6-2.42a.87.87%200%200%200-.88-.77%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/prime/phone.svg?color=%231a73e8&size=48