Number Circle 7 icon
Used in generic scenarios that need number usage, points made, etc. The Number Circle 7 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 7 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 { NumberCircle724Regular, NumberCircle724Filled } from "@fluentui/react-icons";
export function Example() {
return <NumberCircle724Regular aria-label="Number Circle 7" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_number_circle_7_24_regular.svg" width="24" height="24" alt="Number Circle 7"> 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.5 12C3.5 7.30558 7.30558 3.5 12 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 12ZM12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2ZM11.12 17.4898C11.17 17.4998 11.25 17.4998 11.25 17.4998V17.5098C11.61 17.5098 11.93 17.2598 11.99 16.8898C12.85 11.7698 15.79 8.27977 15.82 8.24977C16.01 8.02977 16.05 7.71977 15.93 7.44977C15.81 7.17977 15.54 7.00977 15.25 7.00977H8.75C8.34 7.00977 8 7.34977 8 7.75977C8 8.16977 8.34 8.50977 8.75 8.50977H13.76C12.73 10.0398 11.13 12.9198 10.5 16.6298C10.44 17.0298 10.71 17.4198 11.12 17.4898Z" 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_7_24_regular.svg";Details
| Name | Number Circle 7 |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_number_circle_7_24_regular.svg |
| Filled file | ic_fluent_number_circle_7_24_filled.svg |
| React components | NumberCircle724Regular, NumberCircle724Filled |
| License | MIT (© Microsoft Corporation) |