chart spiral icon

chart-spiral from Carbon by IBM · Outline · Organization · Apache-2.0 Free for personal and commercial use.

Name
chart-spiral
Set
Carbon
Style
Outline
Category
Organization
Viewbox
32×32
License
Apache 2.0

More organization icons from Carbon

Use the chart spiral icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 32 32"><path fill="currentColor" d="M16 2a13.92 13.92 0 0 0-8.675 3.033A2 2 0 0 0 7 5a2 2 0 0 0-2 2a2 2 0 0 0 .033.325A13.986 13.986 0 1 0 16 2m0 26A11.977 11.977 0 0 1 6.359 8.886a1.83 1.83 0 0 0 1.153.04l1.463 1.463a8.986 8.986 0 0 0 11.831 13.207a1.992 1.992 0 0 0 2.79-2.79a8.93 8.93 0 0 0 0-9.612a1.992 1.992 0 0 0-2.79-2.79a8.945 8.945 0 0 0-10.417.571L8.926 7.512a1.83 1.83 0 0 0-.04-1.153A11.993 11.993 0 1 1 16 28m0-14a2 2 0 1 1-2 2a2.003 2.003 0 0 1 2-2m3.433-.019l2.055-2.055a2 2 0 0 0 .227.045a6.96 6.96 0 0 1 0 8.058a2 2 0 0 0-.227.045l-2.055-2.055a3.88 3.88 0 0 0 0-4.038m.596-3.696a2 2 0 0 0 .045.227l-2.055 2.055a3.88 3.88 0 0 0-4.038 0L11.816 10.4a6.95 6.95 0 0 1 8.213-.116m-7.462 3.696A3.95 3.95 0 0 0 12 16a4.005 4.005 0 0 0 4 4a3.95 3.95 0 0 0 2.019-.567l2.055 2.055a2 2 0 0 0-.045.227a6.988 6.988 0 0 1-9.627-9.9Z"/></svg>

React

import type { SVGProps } from "react";

export function CarbonChartSpiral(props: SVGProps<SVGSVGElement>) {
  return (
    <svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 32 32"><path fill="currentColor" d="M16 2a13.92 13.92 0 0 0-8.675 3.033A2 2 0 0 0 7 5a2 2 0 0 0-2 2a2 2 0 0 0 .033.325A13.986 13.986 0 1 0 16 2m0 26A11.977 11.977 0 0 1 6.359 8.886a1.83 1.83 0 0 0 1.153.04l1.463 1.463a8.986 8.986 0 0 0 11.831 13.207a1.992 1.992 0 0 0 2.79-2.79a8.93 8.93 0 0 0 0-9.612a1.992 1.992 0 0 0-2.79-2.79a8.945 8.945 0 0 0-10.417.571L8.926 7.512a1.83 1.83 0 0 0-.04-1.153A11.993 11.993 0 1 1 16 28m0-14a2 2 0 1 1-2 2a2.003 2.003 0 0 1 2-2m3.433-.019l2.055-2.055a2 2 0 0 0 .227.045a6.96 6.96 0 0 1 0 8.058a2 2 0 0 0-.227.045l-2.055-2.055a3.88 3.88 0 0 0 0-4.038m.596-3.696a2 2 0 0 0 .045.227l-2.055 2.055a3.88 3.88 0 0 0-4.038 0L11.816 10.4a6.95 6.95 0 0 1 8.213-.116m-7.462 3.696A3.95 3.95 0 0 0 12 16a4.005 4.005 0 0 0 4 4a3.95 3.95 0 0 0 2.019-.567l2.055 2.055a2 2 0 0 0-.045.227a6.988 6.988 0 0 1-9.627-9.9Z"/></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 32 32"><path fill="currentColor" d="M16 2a13.92 13.92 0 0 0-8.675 3.033A2 2 0 0 0 7 5a2 2 0 0 0-2 2a2 2 0 0 0 .033.325A13.986 13.986 0 1 0 16 2m0 26A11.977 11.977 0 0 1 6.359 8.886a1.83 1.83 0 0 0 1.153.04l1.463 1.463a8.986 8.986 0 0 0 11.831 13.207a1.992 1.992 0 0 0 2.79-2.79a8.93 8.93 0 0 0 0-9.612a1.992 1.992 0 0 0-2.79-2.79a8.945 8.945 0 0 0-10.417.571L8.926 7.512a1.83 1.83 0 0 0-.04-1.153A11.993 11.993 0 1 1 16 28m0-14a2 2 0 1 1-2 2a2.003 2.003 0 0 1 2-2m3.433-.019l2.055-2.055a2 2 0 0 0 .227.045a6.96 6.96 0 0 1 0 8.058a2 2 0 0 0-.227.045l-2.055-2.055a3.88 3.88 0 0 0 0-4.038m.596-3.696a2 2 0 0 0 .045.227l-2.055 2.055a3.88 3.88 0 0 0-4.038 0L11.816 10.4a6.95 6.95 0 0 1 8.213-.116m-7.462 3.696A3.95 3.95 0 0 0 12 16a4.005 4.005 0 0 0 4 4a3.95 3.95 0 0 0 2.019-.567l2.055 2.055a2 2 0 0 0-.045.227a6.988 6.988 0 0 1-9.627-9.9Z"/></svg>
</template>

CSS

.icon-chart-spiral {
  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%2032%2032%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M16%202a13.92%2013.92%200%200%200-8.675%203.033A2%202%200%200%200%207%205a2%202%200%200%200-2%202a2%202%200%200%200%20.033.325A13.986%2013.986%200%201%200%2016%202m0%2026A11.977%2011.977%200%200%201%206.359%208.886a1.83%201.83%200%200%200%201.153.04l1.463%201.463a8.986%208.986%200%200%200%2011.831%2013.207a1.992%201.992%200%200%200%202.79-2.79a8.93%208.93%200%200%200%200-9.612a1.992%201.992%200%200%200-2.79-2.79a8.945%208.945%200%200%200-10.417.571L8.926%207.512a1.83%201.83%200%200%200-.04-1.153A11.993%2011.993%200%201%201%2016%2028m0-14a2%202%200%201%201-2%202a2.003%202.003%200%200%201%202-2m3.433-.019l2.055-2.055a2%202%200%200%200%20.227.045a6.96%206.96%200%200%201%200%208.058a2%202%200%200%200-.227.045l-2.055-2.055a3.88%203.88%200%200%200%200-4.038m.596-3.696a2%202%200%200%200%20.045.227l-2.055%202.055a3.88%203.88%200%200%200-4.038%200L11.816%2010.4a6.95%206.95%200%200%201%208.213-.116m-7.462%203.696A3.95%203.95%200%200%200%2012%2016a4.005%204.005%200%200%200%204%204a3.95%203.95%200%200%200%202.019-.567l2.055%202.055a2%202%200%200%200-.045.227a6.988%206.988%200%200%201-9.627-9.9Z%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%2032%2032%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M16%202a13.92%2013.92%200%200%200-8.675%203.033A2%202%200%200%200%207%205a2%202%200%200%200-2%202a2%202%200%200%200%20.033.325A13.986%2013.986%200%201%200%2016%202m0%2026A11.977%2011.977%200%200%201%206.359%208.886a1.83%201.83%200%200%200%201.153.04l1.463%201.463a8.986%208.986%200%200%200%2011.831%2013.207a1.992%201.992%200%200%200%202.79-2.79a8.93%208.93%200%200%200%200-9.612a1.992%201.992%200%200%200-2.79-2.79a8.945%208.945%200%200%200-10.417.571L8.926%207.512a1.83%201.83%200%200%200-.04-1.153A11.993%2011.993%200%201%201%2016%2028m0-14a2%202%200%201%201-2%202a2.003%202.003%200%200%201%202-2m3.433-.019l2.055-2.055a2%202%200%200%200%20.227.045a6.96%206.96%200%200%201%200%208.058a2%202%200%200%200-.227.045l-2.055-2.055a3.88%203.88%200%200%200%200-4.038m.596-3.696a2%202%200%200%200%20.045.227l-2.055%202.055a3.88%203.88%200%200%200-4.038%200L11.816%2010.4a6.95%206.95%200%200%201%208.213-.116m-7.462%203.696A3.95%203.95%200%200%200%2012%2016a4.005%204.005%200%200%200%204%204a3.95%203.95%200%200%200%202.019-.567l2.055%202.055a2%202%200%200%200-.045.227a6.988%206.988%200%200%201-9.627-9.9Z%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

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