behance circle icon

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

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

The same icon in other sets

Related icons in Jam Icons

Use the behance 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="M14.03 7.88h-2.505v-.622h2.506v.623zm-4.173 2.553q.243.375.242.911q.002.554-.276.993a1.72 1.72 0 0 1-1.142.801a4.3 4.3 0 0 1-.879.084H5V7h3.005q1.136.017 1.611.663q.285.396.285.95q0 .57-.288.916q-.16.195-.473.354q.475.173.717.55m-3.422-.98h1.317q.405 0 .657-.154q.253-.154.253-.547q0-.435-.334-.574a2.4 2.4 0 0 0-.735-.098H6.435zm2.354 1.802q0-.485-.396-.666q-.223-.102-.622-.106H6.435v1.658H7.75q.405.001.63-.109q.409-.202.409-.777m6.171-1.012q.046.306.039.885h-3.245q.026.672.466.94q.264.169.642.168q.397.001.647-.205a1 1 0 0 0 .239-.306h1.19q-.047.397-.432.806q-.6.65-1.677.65a2.43 2.43 0 0 1-1.57-.548q-.679-.548-.68-1.785q0-1.16.614-1.777q.615-.619 1.595-.618q.58 0 1.048.208q.466.21.769.66q.274.398.355.922m-1.17.116q-.033-.465-.312-.704a1.02 1.02 0 0 0-.69-.242q-.45.001-.696.256q-.247.255-.31.69z"/></g></svg>

React

import type { SVGProps } from "react";

export function JamBehanceCircle(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="M14.03 7.88h-2.505v-.622h2.506v.623zm-4.173 2.553q.243.375.242.911q.002.554-.276.993a1.72 1.72 0 0 1-1.142.801a4.3 4.3 0 0 1-.879.084H5V7h3.005q1.136.017 1.611.663q.285.396.285.95q0 .57-.288.916q-.16.195-.473.354q.475.173.717.55m-3.422-.98h1.317q.405 0 .657-.154q.253-.154.253-.547q0-.435-.334-.574a2.4 2.4 0 0 0-.735-.098H6.435zm2.354 1.802q0-.485-.396-.666q-.223-.102-.622-.106H6.435v1.658H7.75q.405.001.63-.109q.409-.202.409-.777m6.171-1.012q.046.306.039.885h-3.245q.026.672.466.94q.264.169.642.168q.397.001.647-.205a1 1 0 0 0 .239-.306h1.19q-.047.397-.432.806q-.6.65-1.677.65a2.43 2.43 0 0 1-1.57-.548q-.679-.548-.68-1.785q0-1.16.614-1.777q.615-.619 1.595-.618q.58 0 1.048.208q.466.21.769.66q.274.398.355.922m-1.17.116q-.033-.465-.312-.704a1.02 1.02 0 0 0-.69-.242q-.45.001-.696.256q-.247.255-.31.69z"/></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="M14.03 7.88h-2.505v-.622h2.506v.623zm-4.173 2.553q.243.375.242.911q.002.554-.276.993a1.72 1.72 0 0 1-1.142.801a4.3 4.3 0 0 1-.879.084H5V7h3.005q1.136.017 1.611.663q.285.396.285.95q0 .57-.288.916q-.16.195-.473.354q.475.173.717.55m-3.422-.98h1.317q.405 0 .657-.154q.253-.154.253-.547q0-.435-.334-.574a2.4 2.4 0 0 0-.735-.098H6.435zm2.354 1.802q0-.485-.396-.666q-.223-.102-.622-.106H6.435v1.658H7.75q.405.001.63-.109q.409-.202.409-.777m6.171-1.012q.046.306.039.885h-3.245q.026.672.466.94q.264.169.642.168q.397.001.647-.205a1 1 0 0 0 .239-.306h1.19q-.047.397-.432.806q-.6.65-1.677.65a2.43 2.43 0 0 1-1.57-.548q-.679-.548-.68-1.785q0-1.16.614-1.777q.615-.619 1.595-.618q.58 0 1.048.208q.466.21.769.66q.274.398.355.922m-1.17.116q-.033-.465-.312-.704a1.02 1.02 0 0 0-.69-.242q-.45.001-.696.256q-.247.255-.31.69z"/></g></svg>
</template>

CSS

.icon-behance-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%22M14.03%207.88h-2.505v-.622h2.506v.623zm-4.173%202.553q.243.375.242.911q.002.554-.276.993a1.72%201.72%200%200%201-1.142.801a4.3%204.3%200%200%201-.879.084H5V7h3.005q1.136.017%201.611.663q.285.396.285.95q0%20.57-.288.916q-.16.195-.473.354q.475.173.717.55m-3.422-.98h1.317q.405%200%20.657-.154q.253-.154.253-.547q0-.435-.334-.574a2.4%202.4%200%200%200-.735-.098H6.435zm2.354%201.802q0-.485-.396-.666q-.223-.102-.622-.106H6.435v1.658H7.75q.405.001.63-.109q.409-.202.409-.777m6.171-1.012q.046.306.039.885h-3.245q.026.672.466.94q.264.169.642.168q.397.001.647-.205a1%201%200%200%200%20.239-.306h1.19q-.047.397-.432.806q-.6.65-1.677.65a2.43%202.43%200%200%201-1.57-.548q-.679-.548-.68-1.785q0-1.16.614-1.777q.615-.619%201.595-.618q.58%200%201.048.208q.466.21.769.66q.274.398.355.922m-1.17.116q-.033-.465-.312-.704a1.02%201.02%200%200%200-.69-.242q-.45.001-.696.256q-.247.255-.31.69z%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%22M14.03%207.88h-2.505v-.622h2.506v.623zm-4.173%202.553q.243.375.242.911q.002.554-.276.993a1.72%201.72%200%200%201-1.142.801a4.3%204.3%200%200%201-.879.084H5V7h3.005q1.136.017%201.611.663q.285.396.285.95q0%20.57-.288.916q-.16.195-.473.354q.475.173.717.55m-3.422-.98h1.317q.405%200%20.657-.154q.253-.154.253-.547q0-.435-.334-.574a2.4%202.4%200%200%200-.735-.098H6.435zm2.354%201.802q0-.485-.396-.666q-.223-.102-.622-.106H6.435v1.658H7.75q.405.001.63-.109q.409-.202.409-.777m6.171-1.012q.046.306.039.885h-3.245q.026.672.466.94q.264.169.642.168q.397.001.647-.205a1%201%200%200%200%20.239-.306h1.19q-.047.397-.432.806q-.6.65-1.677.65a2.43%202.43%200%200%201-1.57-.548q-.679-.548-.68-1.785q0-1.16.614-1.777q.615-.619%201.595-.618q.58%200%201.048.208q.466.21.769.66q.274.398.355.922m-1.17.116q-.033-.465-.312-.704a1.02%201.02%200%200%200-.69-.242q-.45.001-.696.256q-.247.255-.31.69z%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/behance-circle.svg?color=%231a73e8&size=48