Clipboard Heart icon
Used in copy & task scenarios. The Clipboard Heart icon is part of Microsoft's Fluent UI System Icons, available here in filled and regular (outlined) styles 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.
Use the Clipboard Heart 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 { ClipboardHeart24Regular, ClipboardHeart24Filled } from "@fluentui/react-icons";
export function Example() {
return <ClipboardHeart24Regular aria-label="Clipboard Heart" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_clipboard_heart_24_regular.svg" width="24" height="24" alt="Clipboard Heart"> 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="M20 6.25V11.2317C19.4999 11.1759 18.9923 11.2044 18.5 11.3171V6.25C18.5 5.83579 18.1642 5.5 17.75 5.5L15.621 5.5002C15.2173 6.1031 14.53 6.5 13.75 6.5H10.25C9.46997 6.5 8.78264 6.10306 8.379 5.50016L6.25 5.5C5.83579 5.5 5.5 5.83579 5.5 6.25V19.75C5.5 20.1642 5.83579 20.5 6.25 20.5H13.0394L14.5394 22H6.25C5.00736 22 4 20.9926 4 19.75V6.25C4 5.00736 5.00736 4 6.25 4L8.01379 3.99944C8.13841 2.87472 9.09205 2 10.25 2H13.75C14.9079 2 15.8616 2.87472 15.9862 3.99944L17.75 4C18.9926 4 20 5.00736 20 6.25ZM15.9948 4.09595L16 4.25C16 4.19822 15.9983 4.14685 15.9948 4.09595ZM10.25 3.5C9.83579 3.5 9.5 3.83579 9.5 4.25C9.5 4.66421 9.83579 5 10.25 5H13.75C14.1642 5 14.5 4.66421 14.5 4.25C14.5 3.83579 14.1642 3.5 13.75 3.5H10.25ZM16.484 22.5303C16.6304 22.6768 16.8224 22.75 17.0144 22.75C17.2064 22.75 17.3983 22.6768 17.5448 22.5303L21.953 18.122C23.3069 16.7682 23.3069 14.5732 21.953 13.2194C20.5992 11.8655 18.4042 11.8655 17.0504 13.2194L17.0144 13.2554L16.9784 13.2194C15.6245 11.8655 13.4295 11.8655 12.0757 13.2194C10.7218 14.5732 10.7218 16.7682 12.0757 18.122L16.484 22.5303Z" 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/clipboard_heart_24_regular.svg";Details
| Name | Clipboard Heart |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_clipboard_heart_24_regular.svg |
| Filled file | ic_fluent_clipboard_heart_24_filled.svg |
| React components | ClipboardHeart24Regular, ClipboardHeart24Filled |
| License | MIT (© Microsoft Corporation) |