phone vibrate icon
phone-vibrate-duotone from Reicon by REICON · Duotone · Devices · MIT Free for personal and commercial use.
- Name
- phone-vibrate-duotone
- Set
- Reicon
- Style
- Duotone
- Category
- Devices
- Viewbox
- 24×24
- License
- MIT
2 other variants in Reicon
The same icon in other sets
More devices icons from Reicon
Use the phone vibrate icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><g fill="currentColor"><path d="M5.879 2.879C5 3.757 5 5.172 5 8v8c0 2.828 0 4.243.879 5.121C6.757 22 8.172 22 11 22h2c2.828 0 4.243 0 5.121-.879C19 20.243 19 18.828 19 16V8c0-2.828 0-4.243-.879-5.121C17.243 2 15.828 2 13 2h-2c-2.828 0-4.243 0-5.121.879" opacity=".5"/><path d="M9.5 18.25a.75.75 0 0 0 0 1.5h5a.75.75 0 0 0 0-1.5z"/><path fill-rule="evenodd" d="M1.665 5.33a.75.75 0 0 1 1.006.335l.776 1.553a1.75 1.75 0 0 1 0 1.565l-.552 1.105a.25.25 0 0 0 0 .224l.552 1.105a1.75 1.75 0 0 1 0 1.566l-.552 1.105a.25.25 0 0 0 0 .224l.552 1.105a1.75 1.75 0 0 1 0 1.566l-.776 1.553a.75.75 0 0 1-1.342-.671l.777-1.553a.25.25 0 0 0 0-.224l-.553-1.105a1.75 1.75 0 0 1 0-1.565l.553-1.106a.25.25 0 0 0 0-.224l-.553-1.105a1.75 1.75 0 0 1 0-1.565l.553-1.106a.25.25 0 0 0 0-.224l-.777-1.552a.75.75 0 0 1 .336-1.007m20.67 0a.75.75 0 0 1 .336 1.006l-.776 1.552a.25.25 0 0 0 0 .224l.552 1.106a1.75 1.75 0 0 1 0 1.565l-.552 1.105a.25.25 0 0 0 0 .224l.552 1.105a1.75 1.75 0 0 1 0 1.566l-.552 1.105a.25.25 0 0 0 0 .224l.776 1.553a.75.75 0 0 1-1.342.67l-.776-1.552a1.75 1.75 0 0 1 0-1.566l.553-1.105a.25.25 0 0 0 0-.224l-.553-1.105a1.75 1.75 0 0 1 0-1.565l.553-1.106a.25.25 0 0 0 0-.224l-.553-1.105a1.75 1.75 0 0 1 0-1.565l.776-1.553a.75.75 0 0 1 1.007-.336" clip-rule="evenodd"/></g></svg>
React
import type { SVGProps } from "react";
export function ReiconPhoneVibrateDuotone(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"><path d="M5.879 2.879C5 3.757 5 5.172 5 8v8c0 2.828 0 4.243.879 5.121C6.757 22 8.172 22 11 22h2c2.828 0 4.243 0 5.121-.879C19 20.243 19 18.828 19 16V8c0-2.828 0-4.243-.879-5.121C17.243 2 15.828 2 13 2h-2c-2.828 0-4.243 0-5.121.879" opacity=".5"/><path d="M9.5 18.25a.75.75 0 0 0 0 1.5h5a.75.75 0 0 0 0-1.5z"/><path fillRule="evenodd" d="M1.665 5.33a.75.75 0 0 1 1.006.335l.776 1.553a1.75 1.75 0 0 1 0 1.565l-.552 1.105a.25.25 0 0 0 0 .224l.552 1.105a1.75 1.75 0 0 1 0 1.566l-.552 1.105a.25.25 0 0 0 0 .224l.552 1.105a1.75 1.75 0 0 1 0 1.566l-.776 1.553a.75.75 0 0 1-1.342-.671l.777-1.553a.25.25 0 0 0 0-.224l-.553-1.105a1.75 1.75 0 0 1 0-1.565l.553-1.106a.25.25 0 0 0 0-.224l-.553-1.105a1.75 1.75 0 0 1 0-1.565l.553-1.106a.25.25 0 0 0 0-.224l-.777-1.552a.75.75 0 0 1 .336-1.007m20.67 0a.75.75 0 0 1 .336 1.006l-.776 1.552a.25.25 0 0 0 0 .224l.552 1.106a1.75 1.75 0 0 1 0 1.565l-.552 1.105a.25.25 0 0 0 0 .224l.552 1.105a1.75 1.75 0 0 1 0 1.566l-.552 1.105a.25.25 0 0 0 0 .224l.776 1.553a.75.75 0 0 1-1.342.67l-.776-1.552a1.75 1.75 0 0 1 0-1.566l.553-1.105a.25.25 0 0 0 0-.224l-.553-1.105a1.75 1.75 0 0 1 0-1.565l.553-1.106a.25.25 0 0 0 0-.224l-.553-1.105a1.75 1.75 0 0 1 0-1.565l.776-1.553a.75.75 0 0 1 1.007-.336" clipRule="evenodd"/></g></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><g fill="currentColor"><path d="M5.879 2.879C5 3.757 5 5.172 5 8v8c0 2.828 0 4.243.879 5.121C6.757 22 8.172 22 11 22h2c2.828 0 4.243 0 5.121-.879C19 20.243 19 18.828 19 16V8c0-2.828 0-4.243-.879-5.121C17.243 2 15.828 2 13 2h-2c-2.828 0-4.243 0-5.121.879" opacity=".5"/><path d="M9.5 18.25a.75.75 0 0 0 0 1.5h5a.75.75 0 0 0 0-1.5z"/><path fill-rule="evenodd" d="M1.665 5.33a.75.75 0 0 1 1.006.335l.776 1.553a1.75 1.75 0 0 1 0 1.565l-.552 1.105a.25.25 0 0 0 0 .224l.552 1.105a1.75 1.75 0 0 1 0 1.566l-.552 1.105a.25.25 0 0 0 0 .224l.552 1.105a1.75 1.75 0 0 1 0 1.566l-.776 1.553a.75.75 0 0 1-1.342-.671l.777-1.553a.25.25 0 0 0 0-.224l-.553-1.105a1.75 1.75 0 0 1 0-1.565l.553-1.106a.25.25 0 0 0 0-.224l-.553-1.105a1.75 1.75 0 0 1 0-1.565l.553-1.106a.25.25 0 0 0 0-.224l-.777-1.552a.75.75 0 0 1 .336-1.007m20.67 0a.75.75 0 0 1 .336 1.006l-.776 1.552a.25.25 0 0 0 0 .224l.552 1.106a1.75 1.75 0 0 1 0 1.565l-.552 1.105a.25.25 0 0 0 0 .224l.552 1.105a1.75 1.75 0 0 1 0 1.566l-.552 1.105a.25.25 0 0 0 0 .224l.776 1.553a.75.75 0 0 1-1.342.67l-.776-1.552a1.75 1.75 0 0 1 0-1.566l.553-1.105a.25.25 0 0 0 0-.224l-.553-1.105a1.75 1.75 0 0 1 0-1.565l.553-1.106a.25.25 0 0 0 0-.224l-.553-1.105a1.75 1.75 0 0 1 0-1.565l.776-1.553a.75.75 0 0 1 1.007-.336" clip-rule="evenodd"/></g></svg> </template>
CSS
.icon-phone-vibrate-duotone {
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%3E%3Cpath%20d%3D%22M5.879%202.879C5%203.757%205%205.172%205%208v8c0%202.828%200%204.243.879%205.121C6.757%2022%208.172%2022%2011%2022h2c2.828%200%204.243%200%205.121-.879C19%2020.243%2019%2018.828%2019%2016V8c0-2.828%200-4.243-.879-5.121C17.243%202%2015.828%202%2013%202h-2c-2.828%200-4.243%200-5.121.879%22%20opacity%3D%22.5%22%2F%3E%3Cpath%20d%3D%22M9.5%2018.25a.75.75%200%200%200%200%201.5h5a.75.75%200%200%200%200-1.5z%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M1.665%205.33a.75.75%200%200%201%201.006.335l.776%201.553a1.75%201.75%200%200%201%200%201.565l-.552%201.105a.25.25%200%200%200%200%20.224l.552%201.105a1.75%201.75%200%200%201%200%201.566l-.552%201.105a.25.25%200%200%200%200%20.224l.552%201.105a1.75%201.75%200%200%201%200%201.566l-.776%201.553a.75.75%200%200%201-1.342-.671l.777-1.553a.25.25%200%200%200%200-.224l-.553-1.105a1.75%201.75%200%200%201%200-1.565l.553-1.106a.25.25%200%200%200%200-.224l-.553-1.105a1.75%201.75%200%200%201%200-1.565l.553-1.106a.25.25%200%200%200%200-.224l-.777-1.552a.75.75%200%200%201%20.336-1.007m20.67%200a.75.75%200%200%201%20.336%201.006l-.776%201.552a.25.25%200%200%200%200%20.224l.552%201.106a1.75%201.75%200%200%201%200%201.565l-.552%201.105a.25.25%200%200%200%200%20.224l.552%201.105a1.75%201.75%200%200%201%200%201.566l-.552%201.105a.25.25%200%200%200%200%20.224l.776%201.553a.75.75%200%200%201-1.342.67l-.776-1.552a1.75%201.75%200%200%201%200-1.566l.553-1.105a.25.25%200%200%200%200-.224l-.553-1.105a1.75%201.75%200%200%201%200-1.565l.553-1.106a.25.25%200%200%200%200-.224l-.553-1.105a1.75%201.75%200%200%201%200-1.565l.776-1.553a.75.75%200%200%201%201.007-.336%22%20clip-rule%3D%22evenodd%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%3E%3Cpath%20d%3D%22M5.879%202.879C5%203.757%205%205.172%205%208v8c0%202.828%200%204.243.879%205.121C6.757%2022%208.172%2022%2011%2022h2c2.828%200%204.243%200%205.121-.879C19%2020.243%2019%2018.828%2019%2016V8c0-2.828%200-4.243-.879-5.121C17.243%202%2015.828%202%2013%202h-2c-2.828%200-4.243%200-5.121.879%22%20opacity%3D%22.5%22%2F%3E%3Cpath%20d%3D%22M9.5%2018.25a.75.75%200%200%200%200%201.5h5a.75.75%200%200%200%200-1.5z%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M1.665%205.33a.75.75%200%200%201%201.006.335l.776%201.553a1.75%201.75%200%200%201%200%201.565l-.552%201.105a.25.25%200%200%200%200%20.224l.552%201.105a1.75%201.75%200%200%201%200%201.566l-.552%201.105a.25.25%200%200%200%200%20.224l.552%201.105a1.75%201.75%200%200%201%200%201.566l-.776%201.553a.75.75%200%200%201-1.342-.671l.777-1.553a.25.25%200%200%200%200-.224l-.553-1.105a1.75%201.75%200%200%201%200-1.565l.553-1.106a.25.25%200%200%200%200-.224l-.553-1.105a1.75%201.75%200%200%201%200-1.565l.553-1.106a.25.25%200%200%200%200-.224l-.777-1.552a.75.75%200%200%201%20.336-1.007m20.67%200a.75.75%200%200%201%20.336%201.006l-.776%201.552a.25.25%200%200%200%200%20.224l.552%201.106a1.75%201.75%200%200%201%200%201.565l-.552%201.105a.25.25%200%200%200%200%20.224l.552%201.105a1.75%201.75%200%200%201%200%201.566l-.552%201.105a.25.25%200%200%200%200%20.224l.776%201.553a.75.75%200%200%201-1.342.67l-.776-1.552a1.75%201.75%200%200%201%200-1.566l.553-1.105a.25.25%200%200%200%200-.224l-.553-1.105a1.75%201.75%200%200%201%200-1.565l.553-1.106a.25.25%200%200%200%200-.224l-.553-1.105a1.75%201.75%200%200%201%200-1.565l.776-1.553a.75.75%200%200%201%201.007-.336%22%20clip-rule%3D%22evenodd%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-vibrate-duotone.svg?color=%231a73e8&size=48