Album Subtract icon

The Album Subtract 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.

Regular (outlined)

SVG

Filled

SVG

Use the Album Subtract 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 { AlbumSubtract24Regular, AlbumSubtract24Filled } from "@fluentui/react-icons";

export function Example() {
  return <AlbumSubtract24Regular aria-label="Album Subtract" />;
}

Use it in HTML

Reference the SVG file directly:

<img src="https://fluenticons.co/icons/ic_fluent_album_subtract_24_regular.svg" width="24" height="24" alt="Album Subtract">

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="M6.5 12C9.53757 12 12 14.4624 12 17.5C12 20.5376 9.53757 23 6.5 23C3.46243 23 1 20.5376 1 17.5C1 14.4624 3.46243 12 6.5 12ZM20 4C21.1046 4 22 4.89543 22 6V18C22 19.1046 21.1046 20 20 20H12.502C12.6997 19.5258 12.843 19.0232 12.9238 18.5H20C20.2761 18.5 20.5 18.2761 20.5 18V6C20.5 5.72386 20.2761 5.5 20 5.5H7.5V11.0762C7.17404 11.0258 6.84005 11 6.5 11C6.33177 11 6.16501 11.006 6 11.0186V5.5H4C3.72386 5.5 3.5 5.72386 3.5 6V11.7324C2.94901 12.0196 2.44424 12.3833 2 12.8096V6C2 4.89543 2.89543 4 4 4H20ZM3.49512 17C3.21947 17.0003 2.9961 17.224 2.99609 17.5C2.99609 17.776 3.21947 17.9997 3.49512 18H9.49707C9.77272 17.9997 9.99609 17.776 9.99609 17.5C9.99609 17.224 9.77271 17.0003 9.49707 17H3.49512ZM16 7C17.1046 7 18 7.89543 18 9V10C18 11.1046 17.1046 12 16 12H12C10.8954 12 10 11.1046 10 10V9C10 7.89543 10.8954 7 12 7H16ZM12 8.5C11.7239 8.5 11.5 8.72386 11.5 9V10C11.5 10.2761 11.7239 10.5 12 10.5H16C16.2761 10.5 16.5 10.2761 16.5 10V9C16.5 8.72386 16.2761 8.5 16 8.5H12Z" 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/album_subtract_24_regular.svg";

Details

NameAlbum Subtract
StylesRegular (outlined), Filled
Size24 × 24 px (scalable SVG)
Regular (outlined) fileic_fluent_album_subtract_24_regular.svg
Filled fileic_fluent_album_subtract_24_filled.svg
React componentsAlbumSubtract24Regular, AlbumSubtract24Filled
LicenseMIT (© Microsoft Corporation)

Related icons