phone off icon

phone-off-outline from Eva Icons by Akveo · Outline · MIT Free for personal and commercial use.

Name
phone-off-outline
Set
Eva Icons
Style
Outline
Viewbox
24×24
License
MIT

1 other variant in Eva Icons

The same icon in other sets

Related icons in Eva Icons

Use the phone off icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M19.74 4.26a.89.89 0 0 0-1.26 0L4.26 18.48a.9.9 0 0 0-.26.63a.89.89 0 0 0 1.52.63L19.74 5.52a.89.89 0 0 0 0-1.26M6.7 14.63A13.3 13.3 0 0 1 4 6.6A2.61 2.61 0 0 1 6.6 4h.33L8 8.64l-.55.29c-.87.45-1.5.78-1.17 1.58a11.6 11.6 0 0 0 1.57 3l1.43-1.42a10.4 10.4 0 0 1-.8-1.42C9.71 10 9.72 10 9.85 9.85a1 1 0 0 0 .26-.92L8.74 3a1 1 0 0 0-.65-.72a4 4 0 0 0-.72-.18A4 4 0 0 0 6.6 2A4.6 4.6 0 0 0 2 6.6a15.33 15.33 0 0 0 3.27 9.46Zm15.24 2.01a4.3 4.3 0 0 0-.19-.73a1 1 0 0 0-.72-.65l-6-1.37a1 1 0 0 0-.92.26c-.14.13-.15.14-.8 1.38a11 11 0 0 1-1.41-.8l-1.43 1.43a11.5 11.5 0 0 0 2.94 1.56c.84.34 1.17-.29 1.62-1.16l.29-.55L20 17.07v.33a2.61 2.61 0 0 1-2.6 2.6a13.3 13.3 0 0 1-8-2.7l-1.46 1.43A15.33 15.33 0 0 0 17.4 22a4.6 4.6 0 0 0 4.6-4.6a5 5 0 0 0-.06-.76"/></svg>

React

import type { SVGProps } from "react";

export function EvaPhoneOffOutline(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="M19.74 4.26a.89.89 0 0 0-1.26 0L4.26 18.48a.9.9 0 0 0-.26.63a.89.89 0 0 0 1.52.63L19.74 5.52a.89.89 0 0 0 0-1.26M6.7 14.63A13.3 13.3 0 0 1 4 6.6A2.61 2.61 0 0 1 6.6 4h.33L8 8.64l-.55.29c-.87.45-1.5.78-1.17 1.58a11.6 11.6 0 0 0 1.57 3l1.43-1.42a10.4 10.4 0 0 1-.8-1.42C9.71 10 9.72 10 9.85 9.85a1 1 0 0 0 .26-.92L8.74 3a1 1 0 0 0-.65-.72a4 4 0 0 0-.72-.18A4 4 0 0 0 6.6 2A4.6 4.6 0 0 0 2 6.6a15.33 15.33 0 0 0 3.27 9.46Zm15.24 2.01a4.3 4.3 0 0 0-.19-.73a1 1 0 0 0-.72-.65l-6-1.37a1 1 0 0 0-.92.26c-.14.13-.15.14-.8 1.38a11 11 0 0 1-1.41-.8l-1.43 1.43a11.5 11.5 0 0 0 2.94 1.56c.84.34 1.17-.29 1.62-1.16l.29-.55L20 17.07v.33a2.61 2.61 0 0 1-2.6 2.6a13.3 13.3 0 0 1-8-2.7l-1.46 1.43A15.33 15.33 0 0 0 17.4 22a4.6 4.6 0 0 0 4.6-4.6a5 5 0 0 0-.06-.76"/></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M19.74 4.26a.89.89 0 0 0-1.26 0L4.26 18.48a.9.9 0 0 0-.26.63a.89.89 0 0 0 1.52.63L19.74 5.52a.89.89 0 0 0 0-1.26M6.7 14.63A13.3 13.3 0 0 1 4 6.6A2.61 2.61 0 0 1 6.6 4h.33L8 8.64l-.55.29c-.87.45-1.5.78-1.17 1.58a11.6 11.6 0 0 0 1.57 3l1.43-1.42a10.4 10.4 0 0 1-.8-1.42C9.71 10 9.72 10 9.85 9.85a1 1 0 0 0 .26-.92L8.74 3a1 1 0 0 0-.65-.72a4 4 0 0 0-.72-.18A4 4 0 0 0 6.6 2A4.6 4.6 0 0 0 2 6.6a15.33 15.33 0 0 0 3.27 9.46Zm15.24 2.01a4.3 4.3 0 0 0-.19-.73a1 1 0 0 0-.72-.65l-6-1.37a1 1 0 0 0-.92.26c-.14.13-.15.14-.8 1.38a11 11 0 0 1-1.41-.8l-1.43 1.43a11.5 11.5 0 0 0 2.94 1.56c.84.34 1.17-.29 1.62-1.16l.29-.55L20 17.07v.33a2.61 2.61 0 0 1-2.6 2.6a13.3 13.3 0 0 1-8-2.7l-1.46 1.43A15.33 15.33 0 0 0 17.4 22a4.6 4.6 0 0 0 4.6-4.6a5 5 0 0 0-.06-.76"/></svg>
</template>

CSS

.icon-phone-off-outline {
  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%22M19.74%204.26a.89.89%200%200%200-1.26%200L4.26%2018.48a.9.9%200%200%200-.26.63a.89.89%200%200%200%201.52.63L19.74%205.52a.89.89%200%200%200%200-1.26M6.7%2014.63A13.3%2013.3%200%200%201%204%206.6A2.61%202.61%200%200%201%206.6%204h.33L8%208.64l-.55.29c-.87.45-1.5.78-1.17%201.58a11.6%2011.6%200%200%200%201.57%203l1.43-1.42a10.4%2010.4%200%200%201-.8-1.42C9.71%2010%209.72%2010%209.85%209.85a1%201%200%200%200%20.26-.92L8.74%203a1%201%200%200%200-.65-.72a4%204%200%200%200-.72-.18A4%204%200%200%200%206.6%202A4.6%204.6%200%200%200%202%206.6a15.33%2015.33%200%200%200%203.27%209.46Zm15.24%202.01a4.3%204.3%200%200%200-.19-.73a1%201%200%200%200-.72-.65l-6-1.37a1%201%200%200%200-.92.26c-.14.13-.15.14-.8%201.38a11%2011%200%200%201-1.41-.8l-1.43%201.43a11.5%2011.5%200%200%200%202.94%201.56c.84.34%201.17-.29%201.62-1.16l.29-.55L20%2017.07v.33a2.61%202.61%200%200%201-2.6%202.6a13.3%2013.3%200%200%201-8-2.7l-1.46%201.43A15.33%2015.33%200%200%200%2017.4%2022a4.6%204.6%200%200%200%204.6-4.6a5%205%200%200%200-.06-.76%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%22M19.74%204.26a.89.89%200%200%200-1.26%200L4.26%2018.48a.9.9%200%200%200-.26.63a.89.89%200%200%200%201.52.63L19.74%205.52a.89.89%200%200%200%200-1.26M6.7%2014.63A13.3%2013.3%200%200%201%204%206.6A2.61%202.61%200%200%201%206.6%204h.33L8%208.64l-.55.29c-.87.45-1.5.78-1.17%201.58a11.6%2011.6%200%200%200%201.57%203l1.43-1.42a10.4%2010.4%200%200%201-.8-1.42C9.71%2010%209.72%2010%209.85%209.85a1%201%200%200%200%20.26-.92L8.74%203a1%201%200%200%200-.65-.72a4%204%200%200%200-.72-.18A4%204%200%200%200%206.6%202A4.6%204.6%200%200%200%202%206.6a15.33%2015.33%200%200%200%203.27%209.46Zm15.24%202.01a4.3%204.3%200%200%200-.19-.73a1%201%200%200%200-.72-.65l-6-1.37a1%201%200%200%200-.92.26c-.14.13-.15.14-.8%201.38a11%2011%200%200%201-1.41-.8l-1.43%201.43a11.5%2011.5%200%200%200%202.94%201.56c.84.34%201.17-.29%201.62-1.16l.29-.55L20%2017.07v.33a2.61%202.61%200%200%201-2.6%202.6a13.3%2013.3%200%200%201-8-2.7l-1.46%201.43A15.33%2015.33%200%200%200%2017.4%2022a4.6%204.6%200%200%200%204.6-4.6a5%205%200%200%200-.06-.76%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

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