Add Subtract Circle icon
Used to represent exposure updates in photo edit scenarios. The Add Subtract 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 Add Subtract 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 { AddSubtractCircle24Regular, AddSubtractCircle24Filled } from "@fluentui/react-icons";
export function Example() {
return <AddSubtractCircle24Regular aria-label="Add Subtract Circle" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_add_subtract_circle_24_regular.svg" width="24" height="24" alt="Add Subtract 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="M13 15.25C13 14.8358 13.3358 14.5 13.75 14.5H17.25C17.6642 14.5 18 14.8358 18 15.25C18 15.6642 17.6642 16 17.25 16H13.75C13.3358 16 13 15.6642 13 15.25ZM9.5 6.75C9.5 6.33579 9.16421 6 8.75 6C8.33579 6 8 6.33579 8 6.75V8H6.75C6.33579 8 6 8.33579 6 8.75C6 9.16421 6.33579 9.5 6.75 9.5H8V10.75C8 11.1642 8.33579 11.5 8.75 11.5C9.16421 11.5 9.5 11.1642 9.5 10.75V9.5H10.75C11.1642 9.5 11.5 9.16421 11.5 8.75C11.5 8.33579 11.1642 8 10.75 8H9.5V6.75ZM12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22ZM12 20.5C16.6944 20.5 20.5 16.6944 20.5 12C20.5 9.92281 19.7549 8.01965 18.5174 6.54319L6.54319 18.5174C8.01965 19.7549 9.92281 20.5 12 20.5ZM5.48254 17.4567L17.4567 5.48254C15.9803 4.24507 14.0772 3.5 12 3.5C7.30558 3.5 3.5 7.30558 3.5 12C3.5 14.0772 4.24507 15.9803 5.48254 17.4567Z" 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/add_subtract_circle_24_regular.svg";Details
| Name | Add Subtract Circle |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_add_subtract_circle_24_regular.svg |
| Filled file | ic_fluent_add_subtract_circle_24_filled.svg |
| React components | AddSubtractCircle24Regular, AddSubtractCircle24Filled |
| License | MIT (© Microsoft Corporation) |