Macro Off icon

Macro Off is a Google Material Symbol from the Images category. It comes in outlined, rounded and sharp styles, filled or unfilled, at seven weights from 100 to 700. Download it as SVG or PNG, or copy code for HTML, React, Vue, Angular, Flutter and Android — it's free to use under the Apache License 2.0.

Outlined

SVG

Outlined, filled

SVG

Every style, fill and weight

Material Symbols are variable: each icon comes in three styles, with or without fill, at seven weights. Pick a combination to preview it, download it, or copy the code for your platform.

Outlined, unfilled, weight 400

macro_off_outlined_fill0_wght400.svg

Macro Off icon in HTML

Load the Material Symbols font from Google Fonts (this link loads just this icon), then use the icon's name as text.

<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200&icon_names=macro_off" />

<span class="material-symbols-outlined">macro_off</span>

Macro Off icon in React

// With the font from the HTML tab:
export function MacroOffIcon() {
  return (
    <span className="material-symbols-outlined">
      macro_off
    </span>
  );
}

// Or as an SVG component (Vite + vite-plugin-svgr) instead:
//   npm install @material-symbols/svg-400
//   import MacroOffIcon from "@material-symbols/svg-400/outlined/macro_off.svg?react";

Macro Off icon in Vue

<!-- With the font from the HTML tab -->
<template>
  <span class="material-symbols-outlined">macro_off</span>
</template>

<!-- Or as an SVG component (Vite + vite-svg-loader):
     npm install @material-symbols/svg-400
     import MacroOffIcon from "@material-symbols/svg-400/outlined/macro_off.svg?component"; -->

Macro Off icon in Angular

With Angular Material and the font from the HTML tab:

<mat-icon fontSet="material-symbols-outlined">macro_off</mat-icon>

Macro Off icon in Flutter

Uses the community material_symbols_icons package.

flutter pub add material_symbols_icons

import 'package:material_symbols_icons/symbols.dart';

Icon(Symbols.macro_off, fill: 0, weight: 400)

Macro Off icon in Android

A vector drawable of the selected style, fill and weight:

<!-- res/drawable/macro_off.xml -->
<vector xmlns:android="http://schemas.android.com/apk/res/android"
    android:width="24dp"
    android:height="24dp"
    android:viewportWidth="24"
    android:viewportHeight="24"
    android:tint="?attr/colorControlNormal">
        <path android:fillColor="@android:color/white" android:pathData="M19.825 17.2 16.8 14.175q.95-.575 2.013-.875t2.187-.3q0 1.125-.3 2.188T19.825 17.2Zm-3 1.3-1.325-1.3q-.525 .625-.937 1.35T13.875 20.125q.875-.275 1.6-.675t1.35-.95Zm4.85 2.7-1.075 1.075-2.7-2.7q-1.225 1.125-2.74 1.775Q13.645 22 12 22q0-1.645 .65-3.16Q13.3 17.325 14.425 16.1l-1.7-1.7q-.175 .05-.35 .075t-.375 .025q-.925 0-1.65-.537T9.264 12.55q-.139 0-.301 .013-.163 .012-.313 .012-1.2 0-2.05-.85t-.85-2.05q0-.452 .15-.864Q6.05 8.4 6.325 8.025L2.125 3.825l1.075-1.075 18.475 18.45ZM13.65 1.538q.725 .537 1.075 1.412 .15 0 .313-.012t.312-.013q1.196 0 2.036 .851Q18.225 4.628 18.225 5.825q0 .525-.2 1.013T17.475 7.75q.361 .425 .556 .913Q18.225 9.15 18.225 9.675q0 1.2-.837 2.05T15.35 12.575h-.15L11.175 8.55l-1.725-1.7q.15-.425 .413-.787T10.5 5.425l-1.059-.745Q9.275 4.55 9.075 4.488q-.2-.063-.425-.063-.312 0-.594 .138T7.575 4.95l-1.075-1.05q.5-.575 1.25-.787Q8.5 2.9 9.275 2.95q.35-.875 1.075-1.412t1.65-.538q.925 0 1.65 .538ZM15.355 11.075q.57 0 .983-.41 .412-.411 .412-.989 0-.426-.225-.738T15.925 8.425l-1.175-.575q-.05 .35-.15 .663t-.251 .59q-.151 .278-.362 .525T13.5 10.075l1.06 .745Q14.725 10.95 14.92 11.013t.435 .062ZM14.75 7.65l1.175-.575q.375-.2 .588-.531 .212-.331 .212-.722 0-.572-.397-.984Q15.931 4.425 15.35 4.425q-.225 0-.417 .063-.191 .062-.383 .187l-1.1 .75q.275 .2 .5 .44 .225 .24 .375 .51 .175 .275 .275 .588t.15 .687Zm-3.975-2.35q.35-.15 .663-.225t.562-.075q.25 0 .563 .075t.662 .225l.175-1.55q.05-.525-.4-.887T12.013 2.5q-.538 0-1 .369Q10.55 3.239 10.6 3.75l.175 1.55Zm1.238 3.575q.462 0 .787-.337t.325-.8q0-.463-.324-.788-.323-.325-.801-.325-.45 0-.788 .324Q10.875 7.272 10.875 7.75q0 .45 .338 .788t.8 .337Zm2.337 .225Zm-.025-2.725Zm-2.325-1.375Zm0 17q0-1.75-.75-3.375t-2-2.875q-1.25-1.25-2.875-2t-3.375-.75q0 1.75 .75 3.375t2 2.875q1.25 1.25 2.875 2t3.375 .75Zm-1.875-1.875q-2-.65-3.325-1.975t-1.975-3.325q2 .65 3.325 1.988T10.125 20.125Zm3.75 0Zm-3.75 0Z" />
</vector>

Macro Off icon in SVG

npm install @material-symbols/svg-400

import icon from "@material-symbols/svg-400/outlined/macro_off.svg";

<!-- or load it from a CDN -->
<img src="https://cdn.jsdelivr.net/npm/@material-symbols/[email protected]/outlined/macro_off.svg" width="24" height="24" alt="Macro Off">

Macro Off icon in Power Apps

Paste into an Image control's Image property. The Copy button copies the full formula with this icon's SVG.

"data:image/svg+xml;utf8, " & EncodeUrl("<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'>…</svg>")

Details

NameMacro Off
Ligaturemacro_off
Code pointU+F8D2
CategoryImages
StylesOutlined, Rounded, Sharp — each unfilled or filled
Weights100, 200, 300, 400, 500, 600, 700
Files@material-symbols/svg-400/outlined/macro_off.svg, macro_off-fill.svg
FlutterSymbols.macro_off
LicenseApache License 2.0 (© Google LLC)

Keywords

imagesondisabledimageslashenabledcameraofflinediagonal linecontrolsdisablegardendeactivate

Related icons