Presence Busy 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 Busy icon is part of Microsoft's Fluent UI System Icons, available here in the filled 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.
Filled
Use the Presence Busy 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 { PresenceBusy24Filled } from "@fluentui/react-icons";
export function Example() {
return <PresenceBusy24Filled aria-label="Presence Busy" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_presence_busy_24_filled.svg" width="24" height="24" alt="Presence Busy"> 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="M24 12C24 18.6274 18.6274 24 12 24C5.37258 24 0 18.6274 0 12C0 5.37258 5.37258 0 12 0C18.6274 0 24 5.37258 24 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_busy_24_filled.svg";Details
| Name | Presence Busy |
|---|---|
| Styles | Filled |
| Size | 24 × 24 px (scalable SVG) |
| Filled file | ic_fluent_presence_busy_24_filled.svg |
| React components | PresenceBusy24Filled |
| License | MIT (© Microsoft Corporation) |