adjust circle icon

adjust-circle from Unicons by Iconscout · Line · User Interface · Apache-2.0 Free for personal and commercial use.

Name
adjust-circle
Set
Unicons
Style
Line
Category
User Interface
Viewbox
24×24
License
Apache 2.0

More user interface icons from Unicons

Use the adjust circle icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M17 7A7.74 7.74 0 1 0 7 17A7.74 7.74 0 1 0 17 7m-1.6 1.6a6 6 0 0 1 .11 1.14a6 6 0 0 1-.16 1.34l-2.44-2.42a6 6 0 0 1 1.34-.16a6 6 0 0 1 1.14.11Zm-.94 4.4A6 6 0 0 1 13 14.46L9.54 11A6 6 0 0 1 11 9.54Zm-8 1.46a5.75 5.75 0 1 1 8-8h-.25a7.76 7.76 0 0 0-7.71 7.79c0 .08.01.17.01.25Zm2.1.89a6 6 0 0 1-.11-1.14a6 6 0 0 1 .16-1.34l2.43 2.43a6 6 0 0 1-1.34.16a6 6 0 0 1-1.09-.07ZM14.25 20a5.77 5.77 0 0 1-4.75-2.51h.25a7.76 7.76 0 0 0 7.75-7.74V9.5A5.75 5.75 0 0 1 14.25 20"/></svg>

React

import type { SVGProps } from "react";

export function UilAdjustCircle(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="M17 7A7.74 7.74 0 1 0 7 17A7.74 7.74 0 1 0 17 7m-1.6 1.6a6 6 0 0 1 .11 1.14a6 6 0 0 1-.16 1.34l-2.44-2.42a6 6 0 0 1 1.34-.16a6 6 0 0 1 1.14.11Zm-.94 4.4A6 6 0 0 1 13 14.46L9.54 11A6 6 0 0 1 11 9.54Zm-8 1.46a5.75 5.75 0 1 1 8-8h-.25a7.76 7.76 0 0 0-7.71 7.79c0 .08.01.17.01.25Zm2.1.89a6 6 0 0 1-.11-1.14a6 6 0 0 1 .16-1.34l2.43 2.43a6 6 0 0 1-1.34.16a6 6 0 0 1-1.09-.07ZM14.25 20a5.77 5.77 0 0 1-4.75-2.51h.25a7.76 7.76 0 0 0 7.75-7.74V9.5A5.75 5.75 0 0 1 14.25 20"/></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M17 7A7.74 7.74 0 1 0 7 17A7.74 7.74 0 1 0 17 7m-1.6 1.6a6 6 0 0 1 .11 1.14a6 6 0 0 1-.16 1.34l-2.44-2.42a6 6 0 0 1 1.34-.16a6 6 0 0 1 1.14.11Zm-.94 4.4A6 6 0 0 1 13 14.46L9.54 11A6 6 0 0 1 11 9.54Zm-8 1.46a5.75 5.75 0 1 1 8-8h-.25a7.76 7.76 0 0 0-7.71 7.79c0 .08.01.17.01.25Zm2.1.89a6 6 0 0 1-.11-1.14a6 6 0 0 1 .16-1.34l2.43 2.43a6 6 0 0 1-1.34.16a6 6 0 0 1-1.09-.07ZM14.25 20a5.77 5.77 0 0 1-4.75-2.51h.25a7.76 7.76 0 0 0 7.75-7.74V9.5A5.75 5.75 0 0 1 14.25 20"/></svg>
</template>

CSS

.icon-adjust-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%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M17%207A7.74%207.74%200%201%200%207%2017A7.74%207.74%200%201%200%2017%207m-1.6%201.6a6%206%200%200%201%20.11%201.14a6%206%200%200%201-.16%201.34l-2.44-2.42a6%206%200%200%201%201.34-.16a6%206%200%200%201%201.14.11Zm-.94%204.4A6%206%200%200%201%2013%2014.46L9.54%2011A6%206%200%200%201%2011%209.54Zm-8%201.46a5.75%205.75%200%201%201%208-8h-.25a7.76%207.76%200%200%200-7.71%207.79c0%20.08.01.17.01.25Zm2.1.89a6%206%200%200%201-.11-1.14a6%206%200%200%201%20.16-1.34l2.43%202.43a6%206%200%200%201-1.34.16a6%206%200%200%201-1.09-.07ZM14.25%2020a5.77%205.77%200%200%201-4.75-2.51h.25a7.76%207.76%200%200%200%207.75-7.74V9.5A5.75%205.75%200%200%201%2014.25%2020%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%22M17%207A7.74%207.74%200%201%200%207%2017A7.74%207.74%200%201%200%2017%207m-1.6%201.6a6%206%200%200%201%20.11%201.14a6%206%200%200%201-.16%201.34l-2.44-2.42a6%206%200%200%201%201.34-.16a6%206%200%200%201%201.14.11Zm-.94%204.4A6%206%200%200%201%2013%2014.46L9.54%2011A6%206%200%200%201%2011%209.54Zm-8%201.46a5.75%205.75%200%201%201%208-8h-.25a7.76%207.76%200%200%200-7.71%207.79c0%20.08.01.17.01.25Zm2.1.89a6%206%200%200%201-.11-1.14a6%206%200%200%201%20.16-1.34l2.43%202.43a6%206%200%200%201-1.34.16a6%206%200%200%201-1.09-.07ZM14.25%2020a5.77%205.77%200%200%201-4.75-2.51h.25a7.76%207.76%200%200%200%207.75-7.74V9.5A5.75%205.75%200%200%201%2014.25%2020%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

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