viber circle icon

viber-circle from Jam Icons by Michael Amprimo · Outline · MIT Free for personal and commercial use.

Name
viber-circle
Set
Jam Icons
Style
Outline
Viewbox
24×24
License
MIT

Related icons in Jam Icons

Use the viber circle icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="-2 -2 24 24"><g fill="currentColor"><path d="M10 18a8 8 0 1 0 0-16a8 8 0 0 0 0 16m0 2C4.477 20 0 15.523 0 10S4.477 0 10 0s10 4.477 10 10s-4.477 10-10 10"/><path d="M13.644 9.404c.012-1.492-1.219-2.86-2.744-3.049l-.1-.015a1.4 1.4 0 0 0-.232-.026c-.313 0-.396.226-.418.361a.43.43 0 0 0 .06.329c.104.145.286.17.432.192q.066.008.117.02c1.371.315 1.833.812 2.058 2.215q.008.053.01.122c.01.167.031.516.395.516q.045 0 .096-.008c.339-.053.328-.372.323-.525a1 1 0 0 1 0-.111l.002-.02z"/><path d="M10.48 5.807c.04.003.08.006.111.011c2.25.358 3.286 1.458 3.573 3.8q.006.061.006.14c.003.183.009.563.405.571h.012a.38.38 0 0 0 .294-.115c.123-.133.115-.33.108-.49q-.004-.058-.003-.107c.028-2.395-1.98-4.567-4.298-4.647l-.028.001l-.027.002q-.036 0-.082-.004l-.12-.006c-.369 0-.439.27-.448.432c-.02.373.329.4.497.412m3.575 6.837l-.143-.115c-.246-.204-.508-.392-.76-.574l-.158-.114c-.324-.234-.615-.349-.89-.349c-.37 0-.693.212-.96.629q-.175.275-.438.274a.85.85 0 0 1-.353-.091c-1.045-.49-1.792-1.24-2.219-2.23c-.206-.48-.14-.792.224-1.047c.206-.144.59-.413.563-.928c-.03-.585-1.281-2.345-1.808-2.545a1 1 0 0 0-.698-.002c-.605.21-1.04.58-1.257 1.067c-.21.472-.2 1.025.028 1.601c.657 1.666 1.58 3.118 2.746 4.316c1.14 1.173 2.542 2.133 4.166 2.855c.146.065.3.1.412.126l.095.024a.2.2 0 0 0 .04.006h.013c.764 0 1.681-.72 1.963-1.542c.247-.72-.204-1.075-.566-1.36zM10.818 7.71c-.13.003-.403.01-.499.296q-.066.202.016.345c.081.14.237.183.378.206c.512.085.776.378.828.92c.025.254.19.43.402.43l.048-.002q.383-.049.367-.575c.004-.366-.181-.78-.496-1.11c-.316-.332-.697-.519-1.044-.51"/></g></svg>

React

import type { SVGProps } from "react";

export function JamViberCircle(props: SVGProps<SVGSVGElement>) {
  return (
    <svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="-2 -2 24 24"><g fill="currentColor"><path d="M10 18a8 8 0 1 0 0-16a8 8 0 0 0 0 16m0 2C4.477 20 0 15.523 0 10S4.477 0 10 0s10 4.477 10 10s-4.477 10-10 10"/><path d="M13.644 9.404c.012-1.492-1.219-2.86-2.744-3.049l-.1-.015a1.4 1.4 0 0 0-.232-.026c-.313 0-.396.226-.418.361a.43.43 0 0 0 .06.329c.104.145.286.17.432.192q.066.008.117.02c1.371.315 1.833.812 2.058 2.215q.008.053.01.122c.01.167.031.516.395.516q.045 0 .096-.008c.339-.053.328-.372.323-.525a1 1 0 0 1 0-.111l.002-.02z"/><path d="M10.48 5.807c.04.003.08.006.111.011c2.25.358 3.286 1.458 3.573 3.8q.006.061.006.14c.003.183.009.563.405.571h.012a.38.38 0 0 0 .294-.115c.123-.133.115-.33.108-.49q-.004-.058-.003-.107c.028-2.395-1.98-4.567-4.298-4.647l-.028.001l-.027.002q-.036 0-.082-.004l-.12-.006c-.369 0-.439.27-.448.432c-.02.373.329.4.497.412m3.575 6.837l-.143-.115c-.246-.204-.508-.392-.76-.574l-.158-.114c-.324-.234-.615-.349-.89-.349c-.37 0-.693.212-.96.629q-.175.275-.438.274a.85.85 0 0 1-.353-.091c-1.045-.49-1.792-1.24-2.219-2.23c-.206-.48-.14-.792.224-1.047c.206-.144.59-.413.563-.928c-.03-.585-1.281-2.345-1.808-2.545a1 1 0 0 0-.698-.002c-.605.21-1.04.58-1.257 1.067c-.21.472-.2 1.025.028 1.601c.657 1.666 1.58 3.118 2.746 4.316c1.14 1.173 2.542 2.133 4.166 2.855c.146.065.3.1.412.126l.095.024a.2.2 0 0 0 .04.006h.013c.764 0 1.681-.72 1.963-1.542c.247-.72-.204-1.075-.566-1.36zM10.818 7.71c-.13.003-.403.01-.499.296q-.066.202.016.345c.081.14.237.183.378.206c.512.085.776.378.828.92c.025.254.19.43.402.43l.048-.002q.383-.049.367-.575c.004-.366-.181-.78-.496-1.11c-.316-.332-.697-.519-1.044-.51"/></g></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="-2 -2 24 24"><g fill="currentColor"><path d="M10 18a8 8 0 1 0 0-16a8 8 0 0 0 0 16m0 2C4.477 20 0 15.523 0 10S4.477 0 10 0s10 4.477 10 10s-4.477 10-10 10"/><path d="M13.644 9.404c.012-1.492-1.219-2.86-2.744-3.049l-.1-.015a1.4 1.4 0 0 0-.232-.026c-.313 0-.396.226-.418.361a.43.43 0 0 0 .06.329c.104.145.286.17.432.192q.066.008.117.02c1.371.315 1.833.812 2.058 2.215q.008.053.01.122c.01.167.031.516.395.516q.045 0 .096-.008c.339-.053.328-.372.323-.525a1 1 0 0 1 0-.111l.002-.02z"/><path d="M10.48 5.807c.04.003.08.006.111.011c2.25.358 3.286 1.458 3.573 3.8q.006.061.006.14c.003.183.009.563.405.571h.012a.38.38 0 0 0 .294-.115c.123-.133.115-.33.108-.49q-.004-.058-.003-.107c.028-2.395-1.98-4.567-4.298-4.647l-.028.001l-.027.002q-.036 0-.082-.004l-.12-.006c-.369 0-.439.27-.448.432c-.02.373.329.4.497.412m3.575 6.837l-.143-.115c-.246-.204-.508-.392-.76-.574l-.158-.114c-.324-.234-.615-.349-.89-.349c-.37 0-.693.212-.96.629q-.175.275-.438.274a.85.85 0 0 1-.353-.091c-1.045-.49-1.792-1.24-2.219-2.23c-.206-.48-.14-.792.224-1.047c.206-.144.59-.413.563-.928c-.03-.585-1.281-2.345-1.808-2.545a1 1 0 0 0-.698-.002c-.605.21-1.04.58-1.257 1.067c-.21.472-.2 1.025.028 1.601c.657 1.666 1.58 3.118 2.746 4.316c1.14 1.173 2.542 2.133 4.166 2.855c.146.065.3.1.412.126l.095.024a.2.2 0 0 0 .04.006h.013c.764 0 1.681-.72 1.963-1.542c.247-.72-.204-1.075-.566-1.36zM10.818 7.71c-.13.003-.403.01-.499.296q-.066.202.016.345c.081.14.237.183.378.206c.512.085.776.378.828.92c.025.254.19.43.402.43l.048-.002q.383-.049.367-.575c.004-.366-.181-.78-.496-1.11c-.316-.332-.697-.519-1.044-.51"/></g></svg>
</template>

CSS

.icon-viber-circle {
  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%22-2%20-2%2024%2024%22%3E%3Cg%20fill%3D%22currentColor%22%3E%3Cpath%20d%3D%22M10%2018a8%208%200%201%200%200-16a8%208%200%200%200%200%2016m0%202C4.477%2020%200%2015.523%200%2010S4.477%200%2010%200s10%204.477%2010%2010s-4.477%2010-10%2010%22%2F%3E%3Cpath%20d%3D%22M13.644%209.404c.012-1.492-1.219-2.86-2.744-3.049l-.1-.015a1.4%201.4%200%200%200-.232-.026c-.313%200-.396.226-.418.361a.43.43%200%200%200%20.06.329c.104.145.286.17.432.192q.066.008.117.02c1.371.315%201.833.812%202.058%202.215q.008.053.01.122c.01.167.031.516.395.516q.045%200%20.096-.008c.339-.053.328-.372.323-.525a1%201%200%200%201%200-.111l.002-.02z%22%2F%3E%3Cpath%20d%3D%22M10.48%205.807c.04.003.08.006.111.011c2.25.358%203.286%201.458%203.573%203.8q.006.061.006.14c.003.183.009.563.405.571h.012a.38.38%200%200%200%20.294-.115c.123-.133.115-.33.108-.49q-.004-.058-.003-.107c.028-2.395-1.98-4.567-4.298-4.647l-.028.001l-.027.002q-.036%200-.082-.004l-.12-.006c-.369%200-.439.27-.448.432c-.02.373.329.4.497.412m3.575%206.837l-.143-.115c-.246-.204-.508-.392-.76-.574l-.158-.114c-.324-.234-.615-.349-.89-.349c-.37%200-.693.212-.96.629q-.175.275-.438.274a.85.85%200%200%201-.353-.091c-1.045-.49-1.792-1.24-2.219-2.23c-.206-.48-.14-.792.224-1.047c.206-.144.59-.413.563-.928c-.03-.585-1.281-2.345-1.808-2.545a1%201%200%200%200-.698-.002c-.605.21-1.04.58-1.257%201.067c-.21.472-.2%201.025.028%201.601c.657%201.666%201.58%203.118%202.746%204.316c1.14%201.173%202.542%202.133%204.166%202.855c.146.065.3.1.412.126l.095.024a.2.2%200%200%200%20.04.006h.013c.764%200%201.681-.72%201.963-1.542c.247-.72-.204-1.075-.566-1.36zM10.818%207.71c-.13.003-.403.01-.499.296q-.066.202.016.345c.081.14.237.183.378.206c.512.085.776.378.828.92c.025.254.19.43.402.43l.048-.002q.383-.049.367-.575c.004-.366-.181-.78-.496-1.11c-.316-.332-.697-.519-1.044-.51%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%22-2%20-2%2024%2024%22%3E%3Cg%20fill%3D%22currentColor%22%3E%3Cpath%20d%3D%22M10%2018a8%208%200%201%200%200-16a8%208%200%200%200%200%2016m0%202C4.477%2020%200%2015.523%200%2010S4.477%200%2010%200s10%204.477%2010%2010s-4.477%2010-10%2010%22%2F%3E%3Cpath%20d%3D%22M13.644%209.404c.012-1.492-1.219-2.86-2.744-3.049l-.1-.015a1.4%201.4%200%200%200-.232-.026c-.313%200-.396.226-.418.361a.43.43%200%200%200%20.06.329c.104.145.286.17.432.192q.066.008.117.02c1.371.315%201.833.812%202.058%202.215q.008.053.01.122c.01.167.031.516.395.516q.045%200%20.096-.008c.339-.053.328-.372.323-.525a1%201%200%200%201%200-.111l.002-.02z%22%2F%3E%3Cpath%20d%3D%22M10.48%205.807c.04.003.08.006.111.011c2.25.358%203.286%201.458%203.573%203.8q.006.061.006.14c.003.183.009.563.405.571h.012a.38.38%200%200%200%20.294-.115c.123-.133.115-.33.108-.49q-.004-.058-.003-.107c.028-2.395-1.98-4.567-4.298-4.647l-.028.001l-.027.002q-.036%200-.082-.004l-.12-.006c-.369%200-.439.27-.448.432c-.02.373.329.4.497.412m3.575%206.837l-.143-.115c-.246-.204-.508-.392-.76-.574l-.158-.114c-.324-.234-.615-.349-.89-.349c-.37%200-.693.212-.96.629q-.175.275-.438.274a.85.85%200%200%201-.353-.091c-1.045-.49-1.792-1.24-2.219-2.23c-.206-.48-.14-.792.224-1.047c.206-.144.59-.413.563-.928c-.03-.585-1.281-2.345-1.808-2.545a1%201%200%200%200-.698-.002c-.605.21-1.04.58-1.257%201.067c-.21.472-.2%201.025.028%201.601c.657%201.666%201.58%203.118%202.746%204.316c1.14%201.173%202.542%202.133%204.166%202.855c.146.065.3.1.412.126l.095.024a.2.2%200%200%200%20.04.006h.013c.764%200%201.681-.72%201.963-1.542c.247-.72-.204-1.075-.566-1.36zM10.818%207.71c-.13.003-.403.01-.499.296q-.066.202.016.345c.081.14.237.183.378.206c.512.085.776.378.828.92c.025.254.19.43.402.43l.048-.002q.383-.049.367-.575c.004-.366-.181-.78-.496-1.11c-.316-.332-.697-.519-1.044-.51%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

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

Viber Circle outline icon — Jam Icons · IconsDB