Person Circle Off icon
The Person Circle Off 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 Person Circle Off 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 { PersonCircleOff24Regular, PersonCircleOff24Filled } from "@fluentui/react-icons";
export function Example() {
return <PersonCircleOff24Regular aria-label="Person Circle Off" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_person_circle_off_24_regular.svg" width="24" height="24" alt="Person Circle Off"> 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="M2.21973 2.21973C2.51262 1.92684 2.98738 1.92684 3.28027 2.21973L21.7803 20.7197C22.073 21.0126 22.0729 21.4874 21.7803 21.7803C21.4874 22.0731 21.0126 22.073 20.7197 21.7803L18.5186 19.5791C16.7678 21.0863 14.4914 22 12 22C6.47715 22 2 17.5228 2 12C2 9.50855 2.91182 7.23042 4.41895 5.47949L2.21973 3.28027C1.92684 2.98738 1.92684 2.51262 2.21973 2.21973ZM5.48242 6.54297C4.24509 8.01957 3.5 9.92282 3.5 12C3.5 16.6944 7.30558 20.5 12 20.5C14.0771 20.5 15.9787 19.7531 17.4551 18.5156L15.6758 16.7363C14.8187 17.4905 13.5706 18 12 18C8.85951 18 7 15.9714 7 14V13.5C7 12.6716 7.67157 12 8.5 12H10.9395L5.48242 6.54297ZM12 2C17.5228 2 22 6.47715 22 12C22 13.9464 21.4415 15.7614 20.4795 17.2979L19.3857 16.2041C20.0932 14.964 20.5 13.5299 20.5 12C20.5 7.30558 16.6944 3.5 12 3.5C10.4699 3.5 9.03514 3.90573 7.79492 4.61328L6.70117 3.51953C8.23767 2.55746 10.0535 2 12 2ZM15.5 12C16.3284 12 17 12.6716 17 13.5V13.8184L15.1816 12H15.5ZM12 5.5C13.5188 5.5 14.75 6.73122 14.75 8.25C14.75 9.15457 14.3108 9.95389 13.6367 10.4551L9.79395 6.6123C10.2951 5.93827 11.0955 5.5 12 5.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/person_circle_off_24_regular.svg";Details
| Name | Person Circle Off |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_person_circle_off_24_regular.svg |
| Filled file | ic_fluent_person_circle_off_24_filled.svg |
| React components | PersonCircleOff24Regular, PersonCircleOff24Filled |
| License | MIT (© Microsoft Corporation) |