Play Multiple icon
Used to represent playing all. The Play Multiple icon is part of Microsoft's Fluent UI System Icons, available here in regular and filled styles on a 16 px grid. 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_play_multiple_16_regular.svg
Play Multiple icon in React
npm install @fluentui/react-icons
import { PlayMultiple16Regular } from "@fluentui/react-icons";
export function Example() {
return <PlayMultiple16Regular aria-label="Play Multiple" />;
}Use the Play Multiple 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 { PlayMultiple16Regular, PlayMultiple16Filled } from "@fluentui/react-icons";
export function Example() {
return <PlayMultiple16Regular aria-label="Play Multiple" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_play_multiple_16_regular.svg" width="16" height="16" alt="Play Multiple"> Or paste the SVG markup inline. Setting fill="currentColor" makes the icon follow the text color of its parent:
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="currentColor" d="M4.44 12.56a1.5 1.5 0 0 0 1.8.24l8-4.5a1.5 1.5 0 0 0 0-2.6L6.23 1.18A1.52 1.52 0 0 0 4 2.5v9c0 .4.16.78.44 1.06m.7-10.41a.5.5 0 0 1 .6-.09l8 4.5a.5.5 0 0 1 0 .87l-7.98 4.5A.5.5 0 0 1 5 11.5v-9a.5.5 0 0 1 .15-.35m6.62 8.69 1.22-.68.02.25a1.5 1.5 0 0 1-.76 1.31l-5.08 2.86q-.78.4-1.66.42-.46 0-.91-.13A3.46 3.46 0 0 1 2 11.5V5.91a1.5 1.5 0 0 1 1-1.39v6.98a2.5 2.5 0 0 0 3.7 2.19z"/></svg>Details
| Name | Play Multiple |
|---|---|
| Styles | Regular (outlined), Filled |
| Sizes | 16 px |
| Regular (outlined) file | ic_fluent_play_multiple_16_regular.svg |
| Filled file | ic_fluent_play_multiple_16_filled.svg |
| React (Regular) | PlayMultiple16Regular |
| React (Filled) | PlayMultiple16Filled |
| License | MIT (© Microsoft Corporation) |