Clipboard Multiple icon
Used to represent multiple clipboards. The Clipboard 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_clipboard_multiple_16_regular.svg
Clipboard Multiple icon in React
npm install @fluentui/react-icons
import { ClipboardMultiple16Regular } from "@fluentui/react-icons";
export function Example() {
return <ClipboardMultiple16Regular aria-label="Clipboard Multiple" />;
}Use the Clipboard 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 { ClipboardMultiple16Regular, ClipboardMultiple16Filled } from "@fluentui/react-icons";
export function Example() {
return <ClipboardMultiple16Regular aria-label="Clipboard Multiple" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_clipboard_multiple_16_regular.svg" width="16" height="16" alt="Clipboard 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="M6.5 1c-.65 0-1.2.42-1.41 1H4.5C3.67 2 3 2.67 3 3.5v8c0 .83.67 1.5 1.5 1.5h6c.83 0 1.5-.67 1.5-1.5v-8c0-.83-.67-1.5-1.5-1.5h-.59c-.2-.58-.76-1-1.41-1zM6 2.5c0-.28.22-.5.5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5M4.5 3h.59c.2.58.76 1 1.41 1h2c.65 0 1.2-.42 1.41-1h.59c.28 0 .5.22.5.5v8a.5.5 0 0 1-.5.5h-6a.5.5 0 0 1-.5-.5v-8c0-.28.22-.5.5-.5m8.5 8.5V3.27A2 2 0 0 1 14 5v6.5a3.5 3.5 0 0 1-3.5 3.5H6a2 2 0 0 1-1.73-1h6.23a2.5 2.5 0 0 0 2.5-2.5"/></svg>Details
| Name | Clipboard Multiple |
|---|---|
| Styles | Regular (outlined), Filled |
| Sizes | 16 px |
| Regular (outlined) file | ic_fluent_clipboard_multiple_16_regular.svg |
| Filled file | ic_fluent_clipboard_multiple_16_filled.svg |
| React (Regular) | ClipboardMultiple16Regular |
| React (Filled) | ClipboardMultiple16Filled |
| License | MIT (© Microsoft Corporation) |