Presence Tentative 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 Tentative 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 Tentative 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 { PresenceTentative24Regular } from "@fluentui/react-icons";
export function Example() {
return <PresenceTentative24Regular aria-label="Presence Tentative" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_presence_tentative_24_regular.svg" width="24" height="24" alt="Presence Tentative"> 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="M11.6784 0.00460815C5.30324 0.170163 0.165555 5.30784 0 11.683L11.6784 0.00460815ZM2.38952 19.1932C1.64314 18.1979 1.04782 17.0829 0.63756 15.8821L15.8775 0.642168C17.0783 1.05243 18.1933 1.64775 19.1886 2.39413L2.38952 19.1932ZM23.3563 8.12489L8.12028 23.3609C6.91932 22.9513 5.80405 22.3566 4.80849 21.6108L21.6062 4.8131C22.352 5.80866 22.9467 6.92392 23.3563 8.12489ZM23.9915 12.3262L12.3216 23.9962C18.6902 23.8264 23.8218 18.6948 23.9915 12.3262Z" 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_tentative_24_regular.svg";Details
| Name | Presence Tentative |
|---|---|
| Styles | Regular (outlined) |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_presence_tentative_24_regular.svg |
| React components | PresenceTentative24Regular |
| License | MIT (© Microsoft Corporation) |