Recycle icon
Used to represent sustainable recycling practices and events. The Recycle icon is part of Microsoft's Fluent UI System Icons, available here in regular and filled styles in 2 sizes from 20 to 32 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, 20 px
ic_fluent_recycle_20_regular.svg
Recycle icon in React
npm install @fluentui/react-icons
import { Recycle20Regular } from "@fluentui/react-icons";
export function Example() {
return <Recycle20Regular aria-label="Recycle" />;
}Use the Recycle 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 { Recycle20Regular, Recycle20Filled } from "@fluentui/react-icons";
export function Example() {
return <Recycle20Regular aria-label="Recycle" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_recycle_20_regular.svg" width="20" height="20" alt="Recycle"> 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="M11.32 2.92a1.5 1.5 0 0 0-2.64 0L6.83 6.37a.5.5 0 1 1-.88-.47L7.8 2.45a2.5 2.5 0 0 1 4.4 0l2.01 3.74.3-1.77a.5.5 0 0 1 .98.16l-.5 3a.5.5 0 0 1-.65.4l-3-1a.5.5 0 0 1 .32-.95l1.62.54zm4.03 6.4a.5.5 0 0 0-.22.7l2.03 3.77c.54 1-.19 2.21-1.32 2.21H11.7l1.14-1.15a.5.5 0 0 0-.7-.7l-2 2a.5.5 0 0 0 0 .7l2 2a.5.5 0 0 0 .7-.7L11.71 17h4.13a2.5 2.5 0 0 0 2.2-3.68l-2.03-3.78a.5.5 0 0 0-.66-.21M4.16 16H7.5a.5.5 0 0 1 0 1H4.16a2.5 2.5 0 0 1-2.2-3.68l2.15-4-1.95.65a.5.5 0 1 1-.32-.94l3-1a.5.5 0 0 1 .63.31l1 3a.5.5 0 0 1-.94.32l-.6-1.77-2.09 3.9A1.5 1.5 0 0 0 4.16 16"/></svg>Details
| Name | Recycle |
|---|---|
| Styles | Regular (outlined), Filled |
| Sizes | 20 px, 32 px |
| Regular (outlined) file | ic_fluent_recycle_20_regular.svg |
| Filled file | ic_fluent_recycle_20_filled.svg |
| React (Regular) | Recycle20Regular, Recycle32Regular |
| React (Filled) | Recycle20Filled, Recycle32Filled |
| License | MIT (© Microsoft Corporation) |