Bin Full icon
Used to shipping, production scenarios. The Bin Full 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 Bin Full 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 { BinFull24Regular, BinFull24Filled } from "@fluentui/react-icons";
export function Example() {
return <BinFull24Regular aria-label="Bin Full" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_bin_full_24_regular.svg" width="24" height="24" alt="Bin Full"> 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="M17.3809 2.34452C17.6049 2.69295 17.504 3.15699 17.1556 3.38098L5.30361 11.0001H9.5V10.2501C9.5 9.28359 10.2835 8.50009 11.25 8.50009H14.5V7.75009C14.5 6.78359 15.2835 6.00009 16.25 6.00009H19.25C20.2165 6.00009 21 6.78359 21 7.75009V11.0001H21.25C21.6642 11.0001 22 11.3359 22 11.7501V18.7501C22 20.545 20.5449 22.0001 18.75 22.0001H5.25C3.45507 22.0001 2 20.545 2 18.7501V11.7501C2 11.4949 2.12976 11.2572 2.34443 11.1192L16.3444 2.11921C16.6929 1.89522 17.1569 1.9961 17.3809 2.34452ZM19.5 11.0001V7.75009C19.5 7.61202 19.3881 7.50009 19.25 7.50009H16.25C16.1119 7.50009 16 7.61202 16 7.75009V11.0001H19.5ZM14.5 11.0001V10.0001H11.25C11.1119 10.0001 11 10.112 11 10.2501V11.0001H14.5ZM3.5 12.5001V18.7501C3.5 19.7166 4.2835 20.5001 5.25 20.5001H18.75C19.7165 20.5001 20.5 19.7166 20.5 18.7501V12.5001H3.5Z" 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/bin_full_24_regular.svg";Details
| Name | Bin Full |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_bin_full_24_regular.svg |
| Filled file | ic_fluent_bin_full_24_filled.svg |
| React components | BinFull24Regular, BinFull24Filled |
| License | MIT (© Microsoft Corporation) |