Number Circle 0 icon
Used in generic scenarios that need number usage, points made, etc. The Number Circle 0 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 Number Circle 0 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 { NumberCircle024Regular, NumberCircle024Filled } from "@fluentui/react-icons";
export function Example() {
return <NumberCircle024Regular aria-label="Number Circle 0" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_number_circle_0_24_regular.svg" width="24" height="24" alt="Number Circle 0"> 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="M20.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.5C16.6944 3.5 20.5 7.30558 20.5 12ZM12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22ZM9.75 12C9.75 10.7368 9.93443 9.69765 10.3147 9.00032C10.6636 8.3606 11.1727 8 12 8C12.8273 8 13.3364 8.3606 13.6853 9.00032C14.0656 9.69765 14.25 10.7368 14.25 12C14.25 13.2632 14.0656 14.3023 13.6853 14.9997C13.3364 15.6394 12.8273 16 12 16C11.1727 16 10.6636 15.6394 10.3147 14.9997C9.93443 14.3023 9.75 13.2632 9.75 12ZM12 6.5C10.5773 6.5 9.58644 7.20272 8.99779 8.28217C8.44057 9.304 8.25 10.6399 8.25 12C8.25 13.3601 8.44057 14.696 8.99779 15.7178C9.58644 16.7973 10.5773 17.5 12 17.5C13.4227 17.5 14.4136 16.7973 15.0022 15.7178C15.5594 14.696 15.75 13.3601 15.75 12C15.75 10.6399 15.5594 9.304 15.0022 8.28217C14.4136 7.20272 13.4227 6.5 12 6.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/number_circle_0_24_regular.svg";Details
| Name | Number Circle 0 |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_number_circle_0_24_regular.svg |
| Filled file | ic_fluent_number_circle_0_24_filled.svg |
| React components | NumberCircle024Regular, NumberCircle024Filled |
| License | MIT (© Microsoft Corporation) |