infinity symbol icon

infinity-symbol from Carbon by IBM · Outline · Actions · Apache-2.0 Free for personal and commercial use.

Name
infinity-symbol
Set
Carbon
Style
Outline
Category
Actions
Viewbox
32×32
License
Apache 2.0
Aliases
infinity

More actions icons from Carbon

Use the infinity symbol icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 32 32"><path fill="currentColor" d="M23 23c-5.656 0-7.858-6.41-7.949-6.684C15.034 16.265 13.208 11 9 11c-2.757 0-5 2.243-5 5s2.243 5 5 5c1.588 0 3.013-.732 4.237-2.176l1.526 1.293C13.164 22.003 11.172 23 9 23c-3.86 0-7-3.14-7-7s3.14-7 7-7c5.656 0 7.858 6.41 7.949 6.684C16.966 15.735 18.792 21 23 21c2.757 0 5-2.243 5-5s-2.243-5-5-5c-1.588 0-3.013.732-4.237 2.176l-1.526-1.293C18.836 9.997 20.828 9 23 9c3.86 0 7 3.14 7 7s-3.14 7-7 7"/></svg>

React

import type { SVGProps } from "react";

export function CarbonInfinitySymbol(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="M23 23c-5.656 0-7.858-6.41-7.949-6.684C15.034 16.265 13.208 11 9 11c-2.757 0-5 2.243-5 5s2.243 5 5 5c1.588 0 3.013-.732 4.237-2.176l1.526 1.293C13.164 22.003 11.172 23 9 23c-3.86 0-7-3.14-7-7s3.14-7 7-7c5.656 0 7.858 6.41 7.949 6.684C16.966 15.735 18.792 21 23 21c2.757 0 5-2.243 5-5s-2.243-5-5-5c-1.588 0-3.013.732-4.237 2.176l-1.526-1.293C18.836 9.997 20.828 9 23 9c3.86 0 7 3.14 7 7s-3.14 7-7 7"/></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 32 32"><path fill="currentColor" d="M23 23c-5.656 0-7.858-6.41-7.949-6.684C15.034 16.265 13.208 11 9 11c-2.757 0-5 2.243-5 5s2.243 5 5 5c1.588 0 3.013-.732 4.237-2.176l1.526 1.293C13.164 22.003 11.172 23 9 23c-3.86 0-7-3.14-7-7s3.14-7 7-7c5.656 0 7.858 6.41 7.949 6.684C16.966 15.735 18.792 21 23 21c2.757 0 5-2.243 5-5s-2.243-5-5-5c-1.588 0-3.013.732-4.237 2.176l-1.526-1.293C18.836 9.997 20.828 9 23 9c3.86 0 7 3.14 7 7s-3.14 7-7 7"/></svg>
</template>

CSS

.icon-infinity-symbol {
  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%22M23%2023c-5.656%200-7.858-6.41-7.949-6.684C15.034%2016.265%2013.208%2011%209%2011c-2.757%200-5%202.243-5%205s2.243%205%205%205c1.588%200%203.013-.732%204.237-2.176l1.526%201.293C13.164%2022.003%2011.172%2023%209%2023c-3.86%200-7-3.14-7-7s3.14-7%207-7c5.656%200%207.858%206.41%207.949%206.684C16.966%2015.735%2018.792%2021%2023%2021c2.757%200%205-2.243%205-5s-2.243-5-5-5c-1.588%200-3.013.732-4.237%202.176l-1.526-1.293C18.836%209.997%2020.828%209%2023%209c3.86%200%207%203.14%207%207s-3.14%207-7%207%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%22M23%2023c-5.656%200-7.858-6.41-7.949-6.684C15.034%2016.265%2013.208%2011%209%2011c-2.757%200-5%202.243-5%205s2.243%205%205%205c1.588%200%203.013-.732%204.237-2.176l1.526%201.293C13.164%2022.003%2011.172%2023%209%2023c-3.86%200-7-3.14-7-7s3.14-7%207-7c5.656%200%207.858%206.41%207.949%206.684C16.966%2015.735%2018.792%2021%2023%2021c2.757%200%205-2.243%205-5s-2.243-5-5-5c-1.588%200-3.013.732-4.237%202.176l-1.526-1.293C18.836%209.997%2020.828%209%2023%209c3.86%200%207%203.14%207%207s-3.14%207-7%207%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

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