Circle Line icon
Used for general circle needs. The Circle Line 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 Circle Line 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 { CircleLine24Regular, CircleLine24Filled } from "@fluentui/react-icons";
export function Example() {
return <CircleLine24Regular aria-label="Circle Line" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_circle_line_24_regular.svg" width="24" height="24" alt="Circle Line"> 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="M3.53263 11.25H20.4674C20.0877 6.90686 16.4417 3.5 12 3.5C7.55831 3.5 3.91233 6.90686 3.53263 11.25ZM20.4674 12.75H3.53263C3.91233 17.0931 7.55831 20.5 12 20.5C16.4417 20.5 20.0877 17.0931 20.4674 12.75ZM2 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 12Z" 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/circle_line_24_regular.svg";Details
| Name | Circle Line |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_circle_line_24_regular.svg |
| Filled file | ic_fluent_circle_line_24_filled.svg |
| React components | CircleLine24Regular, CircleLine24Filled |
| License | MIT (© Microsoft Corporation) |