ear off icon
ear-off-solid from Myna UI Icons by Praveen Juge · Solid · MIT Free for personal and commercial use.
- Name
- ear-off-solid
- Set
- Myna UI Icons
- Style
- Solid
- Viewbox
- 24×24
- License
- MIT
- Aliases
- ear-slash-solid
1 other variant in Myna UI Icons
The same icon in other sets
Use the ear off icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M21.53 3.53a.75.75 0 0 0-1.06-1.06l-3.621 3.62c-1.405-1.953-3.818-2.623-5.957-2.232C8.342 4.324 6 6.329 6 9.618a.75.75 0 0 0 1.5 0c0-2.43 1.683-3.923 3.662-4.285c1.757-.321 3.61.273 4.606 1.839l-1.133 1.132a3.02 3.02 0 0 0-2.367-1.575c-1.39-.131-2.792.724-3.168 2.494c-.163.762.204 1.346.508 1.722c.125.154.267.305.384.43l.07.075c.142.152.237.263.301.36c.138.208.178.43.146.62l-.757.758a.7.7 0 0 1-.252.062a.75.75 0 0 0-.73.92l-6.3 6.3a.75.75 0 1 0 1.06 1.06l3.514-3.514c.126.379.303.73.533 1.041A2.9 2.9 0 0 0 9.97 20.25c1.996 0 3.498-1.48 3.955-3.635c.149-.7.505-1.292.985-1.878c.242-.296.507-.58.789-.879l.099-.105c.247-.26.507-.535.75-.817c.554-.641 1.085-1.39 1.323-2.335c.23-.916.165-1.937-.287-3.124zm-5.14 5.141c.152.632.133 1.138.026 1.565c-.153.61-.508 1.146-1.003 1.72c-.22.254-.454.502-.704.766l-.1.106c-.283.299-.58.618-.86.958c-.56.685-1.074 1.493-1.292 2.518c-.348 1.645-1.37 2.446-2.487 2.446c-.53 0-.915-.22-1.189-.588c-.25-.337-.424-.824-.466-1.417l2.333-2.332a4 4 0 0 0 .642-.467c.236-.207.41-.447.53-.705l2.803-2.804a.75.75 0 0 0 .347-.347z"/></svg>
React
import type { SVGProps } from "react";
export function MynauiEarOffSolid(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="M21.53 3.53a.75.75 0 0 0-1.06-1.06l-3.621 3.62c-1.405-1.953-3.818-2.623-5.957-2.232C8.342 4.324 6 6.329 6 9.618a.75.75 0 0 0 1.5 0c0-2.43 1.683-3.923 3.662-4.285c1.757-.321 3.61.273 4.606 1.839l-1.133 1.132a3.02 3.02 0 0 0-2.367-1.575c-1.39-.131-2.792.724-3.168 2.494c-.163.762.204 1.346.508 1.722c.125.154.267.305.384.43l.07.075c.142.152.237.263.301.36c.138.208.178.43.146.62l-.757.758a.7.7 0 0 1-.252.062a.75.75 0 0 0-.73.92l-6.3 6.3a.75.75 0 1 0 1.06 1.06l3.514-3.514c.126.379.303.73.533 1.041A2.9 2.9 0 0 0 9.97 20.25c1.996 0 3.498-1.48 3.955-3.635c.149-.7.505-1.292.985-1.878c.242-.296.507-.58.789-.879l.099-.105c.247-.26.507-.535.75-.817c.554-.641 1.085-1.39 1.323-2.335c.23-.916.165-1.937-.287-3.124zm-5.14 5.141c.152.632.133 1.138.026 1.565c-.153.61-.508 1.146-1.003 1.72c-.22.254-.454.502-.704.766l-.1.106c-.283.299-.58.618-.86.958c-.56.685-1.074 1.493-1.292 2.518c-.348 1.645-1.37 2.446-2.487 2.446c-.53 0-.915-.22-1.189-.588c-.25-.337-.424-.824-.466-1.417l2.333-2.332a4 4 0 0 0 .642-.467c.236-.207.41-.447.53-.705l2.803-2.804a.75.75 0 0 0 .347-.347z"/></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M21.53 3.53a.75.75 0 0 0-1.06-1.06l-3.621 3.62c-1.405-1.953-3.818-2.623-5.957-2.232C8.342 4.324 6 6.329 6 9.618a.75.75 0 0 0 1.5 0c0-2.43 1.683-3.923 3.662-4.285c1.757-.321 3.61.273 4.606 1.839l-1.133 1.132a3.02 3.02 0 0 0-2.367-1.575c-1.39-.131-2.792.724-3.168 2.494c-.163.762.204 1.346.508 1.722c.125.154.267.305.384.43l.07.075c.142.152.237.263.301.36c.138.208.178.43.146.62l-.757.758a.7.7 0 0 1-.252.062a.75.75 0 0 0-.73.92l-6.3 6.3a.75.75 0 1 0 1.06 1.06l3.514-3.514c.126.379.303.73.533 1.041A2.9 2.9 0 0 0 9.97 20.25c1.996 0 3.498-1.48 3.955-3.635c.149-.7.505-1.292.985-1.878c.242-.296.507-.58.789-.879l.099-.105c.247-.26.507-.535.75-.817c.554-.641 1.085-1.39 1.323-2.335c.23-.916.165-1.937-.287-3.124zm-5.14 5.141c.152.632.133 1.138.026 1.565c-.153.61-.508 1.146-1.003 1.72c-.22.254-.454.502-.704.766l-.1.106c-.283.299-.58.618-.86.958c-.56.685-1.074 1.493-1.292 2.518c-.348 1.645-1.37 2.446-2.487 2.446c-.53 0-.915-.22-1.189-.588c-.25-.337-.424-.824-.466-1.417l2.333-2.332a4 4 0 0 0 .642-.467c.236-.207.41-.447.53-.705l2.803-2.804a.75.75 0 0 0 .347-.347z"/></svg> </template>
CSS
.icon-ear-off-solid {
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%22M21.53%203.53a.75.75%200%200%200-1.06-1.06l-3.621%203.62c-1.405-1.953-3.818-2.623-5.957-2.232C8.342%204.324%206%206.329%206%209.618a.75.75%200%200%200%201.5%200c0-2.43%201.683-3.923%203.662-4.285c1.757-.321%203.61.273%204.606%201.839l-1.133%201.132a3.02%203.02%200%200%200-2.367-1.575c-1.39-.131-2.792.724-3.168%202.494c-.163.762.204%201.346.508%201.722c.125.154.267.305.384.43l.07.075c.142.152.237.263.301.36c.138.208.178.43.146.62l-.757.758a.7.7%200%200%201-.252.062a.75.75%200%200%200-.73.92l-6.3%206.3a.75.75%200%201%200%201.06%201.06l3.514-3.514c.126.379.303.73.533%201.041A2.9%202.9%200%200%200%209.97%2020.25c1.996%200%203.498-1.48%203.955-3.635c.149-.7.505-1.292.985-1.878c.242-.296.507-.58.789-.879l.099-.105c.247-.26.507-.535.75-.817c.554-.641%201.085-1.39%201.323-2.335c.23-.916.165-1.937-.287-3.124zm-5.14%205.141c.152.632.133%201.138.026%201.565c-.153.61-.508%201.146-1.003%201.72c-.22.254-.454.502-.704.766l-.1.106c-.283.299-.58.618-.86.958c-.56.685-1.074%201.493-1.292%202.518c-.348%201.645-1.37%202.446-2.487%202.446c-.53%200-.915-.22-1.189-.588c-.25-.337-.424-.824-.466-1.417l2.333-2.332a4%204%200%200%200%20.642-.467c.236-.207.41-.447.53-.705l2.803-2.804a.75.75%200%200%200%20.347-.347z%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%22M21.53%203.53a.75.75%200%200%200-1.06-1.06l-3.621%203.62c-1.405-1.953-3.818-2.623-5.957-2.232C8.342%204.324%206%206.329%206%209.618a.75.75%200%200%200%201.5%200c0-2.43%201.683-3.923%203.662-4.285c1.757-.321%203.61.273%204.606%201.839l-1.133%201.132a3.02%203.02%200%200%200-2.367-1.575c-1.39-.131-2.792.724-3.168%202.494c-.163.762.204%201.346.508%201.722c.125.154.267.305.384.43l.07.075c.142.152.237.263.301.36c.138.208.178.43.146.62l-.757.758a.7.7%200%200%201-.252.062a.75.75%200%200%200-.73.92l-6.3%206.3a.75.75%200%201%200%201.06%201.06l3.514-3.514c.126.379.303.73.533%201.041A2.9%202.9%200%200%200%209.97%2020.25c1.996%200%203.498-1.48%203.955-3.635c.149-.7.505-1.292.985-1.878c.242-.296.507-.58.789-.879l.099-.105c.247-.26.507-.535.75-.817c.554-.641%201.085-1.39%201.323-2.335c.23-.916.165-1.937-.287-3.124zm-5.14%205.141c.152.632.133%201.138.026%201.565c-.153.61-.508%201.146-1.003%201.72c-.22.254-.454.502-.704.766l-.1.106c-.283.299-.58.618-.86.958c-.56.685-1.074%201.493-1.292%202.518c-.348%201.645-1.37%202.446-2.487%202.446c-.53%200-.915-.22-1.189-.588c-.25-.337-.424-.824-.466-1.417l2.333-2.332a4%204%200%200%200%20.642-.467c.236-.207.41-.447.53-.705l2.803-2.804a.75.75%200%200%200%20.347-.347z%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/mynaui/ear-off-solid.svg?color=%231a73e8&size=48