Presence Unknown icon
These do not represent the guidelines and quality of the Fluent System iconography. They are included as a way to make it easier for products to pull in without needed a second process. The Presence Unknown icon is part of Microsoft's Fluent UI System Icons, available here in the regular (outlined) style 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.
Regular (outlined)
Use the Presence Unknown 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 { PresenceUnknown24Regular } from "@fluentui/react-icons";
export function Example() {
return <PresenceUnknown24Regular aria-label="Presence Unknown" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_presence_unknown_24_regular.svg" width="24" height="24" alt="Presence Unknown"> 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="M12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3ZM0 12C0 5.37258 5.37258 0 12 0C18.6274 0 24 5.37258 24 12C24 18.6274 18.6274 24 12 24C5.37258 24 0 18.6274 0 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/presence_unknown_24_regular.svg";Details
| Name | Presence Unknown |
|---|---|
| Styles | Regular (outlined) |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_presence_unknown_24_regular.svg |
| React components | PresenceUnknown24Regular |
| License | MIT (© Microsoft Corporation) |