Equal Circle icon
Used in math completion scenarios. The Equal Circle icon is part of Microsoft's Fluent UI System Icons, available here in filled and regular (outlined) styles on a 24 px grid. Download it as SVG or PNG, or copy it as code — it's free to use under the MIT License.
Use the Equal Circle icon in React
Install Microsoft's @fluentui/react-icons package, then import the component. Icons inherit the current text color, and you can size them with CSS.
npm install @fluentui/react-icons
import { EqualCircle24Regular, EqualCircle24Filled } from "@fluentui/react-icons";
export function Example() {
return <EqualCircle24Regular aria-label="Equal Circle" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_equal_circle_24_regular.svg" width="24" height="24" alt="Equal Circle"> Or paste the SVG markup inline. Setting fill="currentColor" makes the icon follow the text color of its parent:
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.2578 10.5C16.672 10.5 17.0078 10.1642 17.0078 9.75C17.0078 9.33579 16.672 9 16.2578 9L7.77047 9C7.35626 9 7.02047 9.33579 7.02047 9.75C7.02047 10.1642 7.35626 10.5 7.77047 10.5H16.2578ZM16.2578 15C16.672 15 17.0078 14.6642 17.0078 14.25C17.0078 13.8358 16.672 13.5 16.2578 13.5H7.77047C7.35626 13.5 7.02047 13.8358 7.02047 14.25C7.02047 14.6642 7.35626 15 7.77047 15H16.2578ZM22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22C17.5228 22 22 17.5228 22 12ZM12 3.5C16.6944 3.5 20.5 7.30558 20.5 12C20.5 16.6944 16.6944 20.5 12 20.5C7.30558 20.5 3.5 16.6944 3.5 12C3.5 7.30558 7.30558 3.5 12 3.5Z" fill="currentColor"/></svg>Use it from the SVG package
Microsoft's @fluentui/svg-icons package contains the raw SVG files, which works well with bundlers that import SVGs:
npm install @fluentui/svg-icons
import icon from "@fluentui/svg-icons/icons/equal_circle_24_regular.svg";Details
| Name | Equal Circle |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_equal_circle_24_regular.svg |
| Filled file | ic_fluent_equal_circle_24_filled.svg |
| React components | EqualCircle24Regular, EqualCircle24Filled |
| License | MIT (© Microsoft Corporation) |