Pause Off icon
Used in playback controls. Collection includes Fastforward, Rewind, Previous, Next, Stop, Play. The Pause Off icon is part of Microsoft's Fluent UI System Icons, available here in regular and filled styles in 2 sizes from 16 to 20 px. Download it as SVG or PNG, or copy it as code — it's free to use under the MIT License.
Every size and style
Microsoft draws each size separately so icons stay crisp, rather than scaling one drawing. Pick a style and size to preview it, download it, or copy the code for your platform.
Regular, 16 px
ic_fluent_pause_off_16_regular.svg
Pause Off icon in React
npm install @fluentui/react-icons
import { PauseOff16Regular } from "@fluentui/react-icons";
export function Example() {
return <PauseOff16Regular aria-label="Pause Off" />;
}Use the Pause 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 { PauseOff16Regular, PauseOff16Filled } from "@fluentui/react-icons";
export function Example() {
return <PauseOff16Regular aria-label="Pause Off" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_pause_off_20_regular.svg" width="20" height="20" alt="Pause Off"> Or paste the SVG markup inline. Setting fill="currentColor" makes the icon follow the text color of its parent:
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="currentColor" d="m3 3.7-.85-.85a.5.5 0 1 1 .7-.7l15 15a.5.5 0 0 1-.7.7l-.45-.45c-.28.37-.71.6-1.2.6h-2a1.5 1.5 0 0 1-1.5-1.5v-3.8l-4-4v7.8c0 .83-.67 1.5-1.5 1.5h-2A1.5 1.5 0 0 1 3 16.5zm4 4-3-3v11.8c0 .28.22.5.5.5h2a.5.5 0 0 0 .5-.5zm6 6v2.8c0 .28.22.5.5.5h2a.5.5 0 0 0 .47-.32zM7 3.5v1.38l1 1V3.5C8 2.67 7.33 2 6.5 2h-2q-.18 0-.34.04l.96.96H6.5c.28 0 .5.22.5.5m5 6.38 1 1V3.5c0-.28.22-.5.5-.5h2c.28 0 .5.22.5.5v10.38l1 1V3.5c0-.83-.67-1.5-1.5-1.5h-2c-.83 0-1.5.67-1.5 1.5z"/></svg>Details
| Name | Pause Off |
|---|---|
| Styles | Regular (outlined), Filled |
| Sizes | 16 px, 20 px |
| Regular (outlined) file | ic_fluent_pause_off_20_regular.svg |
| Filled file | ic_fluent_pause_off_20_filled.svg |
| React (Regular) | PauseOff16Regular, PauseOff20Regular |
| React (Filled) | PauseOff16Filled, PauseOff20Filled |
| License | MIT (© Microsoft Corporation) |