Flowchart Circle icon
Used to represent process flows. The Flowchart 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 Flowchart 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 { FlowchartCircle24Regular, FlowchartCircle24Filled } from "@fluentui/react-icons";
export function Example() {
return <FlowchartCircle24Regular aria-label="Flowchart Circle" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_flowchart_circle_24_regular.svg" width="24" height="24" alt="Flowchart 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="M7.25 6.5C6.83579 6.5 6.5 6.83579 6.5 7.25V9.75C6.5 10.1642 6.83579 10.5 7.25 10.5H7.75V13.1893L5.96967 14.9697C5.67678 15.2626 5.67678 15.7374 5.96967 16.0303L7.96967 18.0303C8.26256 18.3232 8.73744 18.3232 9.03033 18.0303L10.8107 16.25H13.5V16.75C13.5 17.1642 13.8358 17.5 14.25 17.5H16.75C17.1642 17.5 17.5 17.1642 17.5 16.75V14.25C17.5 13.8358 17.1642 13.5 16.75 13.5H14.25C13.8358 13.5 13.5 13.8358 13.5 14.25V14.75H10.8107L9.25 13.1893V10.5H9.75C10.1642 10.5 10.5 10.1642 10.5 9.75V7.25C10.5 6.83579 10.1642 6.5 9.75 6.5H7.25ZM2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12ZM12 3.5C7.30558 3.5 3.5 7.30558 3.5 12C3.5 16.6944 7.30558 20.5 12 20.5C16.6944 20.5 20.5 16.6944 20.5 12C20.5 7.30558 16.6944 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/flowchart_circle_24_regular.svg";Details
| Name | Flowchart Circle |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_flowchart_circle_24_regular.svg |
| Filled file | ic_fluent_flowchart_circle_24_filled.svg |
| React components | FlowchartCircle24Regular, FlowchartCircle24Filled |
| License | MIT (© Microsoft Corporation) |