Dirty Lens icon

Dirty Lens 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.

GradeOptical size

Outlined, unfilled, weight 400

dirty_lens_outlined_fill0_wght400.svg

Dirty Lens 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,GRAD@20..48,100..700,0..1,-50..200&icon_names=dirty_lens" />

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

Dirty Lens icon in React

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

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

Dirty Lens icon in MUI

The @mui/icons-material component (from the older Material Icons set, so no weight or grade):

npm install @mui/icons-material @mui/material @emotion/react @emotion/styled

import DirtyLensOutlinedIcon from "@mui/icons-material/DirtyLensOutlined";

<DirtyLensOutlinedIcon />

Dirty Lens icon in Vue

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

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

Dirty Lens icon in Angular

With Angular Material and the font from the HTML tab:

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

Dirty Lens 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.dirty_lens, fill: 0, weight: 400, grade: 0, opticalSize: 24)

// Or Flutter's built-in Material Icons (the older designs, no fill or weight):
Icon(Icons.dirty_lens_outlined)

Dirty Lens icon in Android

A vector drawable of the selected style, fill and weight, for XML layouts and Jetpack Compose:

<!-- res/drawable/ic_dirty_lens.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.088 18.113Q19.325 17.875 19.325 17.525t-.237-.587Q18.85 16.7 18.5 16.7t-.587 .238Q17.675 17.175 17.675 17.525t.238 .588Q18.15 18.35 18.5 18.35t.588-.237ZM10.9 16.5q.225 0 .388 .238T11.45 17.4q0 .425-.1 .863t-.1 1.237h1.7q0-.85-.15-1.312t-.15-.938q0-.425 .188-.637T13.25 16.4q.225 0 .425 .075t.575 .275q.5 .275 .838 .388T15.65 17.25q.525 0 .838-.387T16.8 16.05q0-.35-.25-.55t-.75-.4q-.425-.15-.612-.3t-.188-.35q0-.225 .313-.312T16.5 14q.75-.05 1.175-.2t.425-.6q0-.425-.237-.762T17.25 12.1q-.175 0-.9 .25-.275 .125-.425 .163t-.275 .037q-.2 0-.325-.137t-.125-.363q0-.35 .325-.637t1.275-.713q1.025-.45 1.363-.8t.337-.7q0-.5-.437-1T17.25 7.7q-.35 0-.662 .325T15.55 9.4q-.5 .725-.862 .988T13.95 10.65q-.35 0-.675-.275t-.675-1.025q-.3-.675-.537-.962T11.45 8.1q-.45 0-.75 .188T10.4 8.7q0 .225 .5 1.05 .225 .35 .313 .525t.087 .375q0 .2-.237 .35t-.463 .15q-.275 0-.525-.137T9.4 10.45q-.45-.425-.65-.562t-.5-.138q-.375 0-.637 .263T7.35 10.55q0 .15 .05 .288t.2 .362q.15 .225 .225 .388t.075 .312q0 .225-.2 .35t-.55 .25q-.425 .15-.587 .325t-.163 .475q0 .2 .063 .438T6.7 14.1q.25 .2 .625 .225t.675 .025q.575 0 .738 .213T8.9 15.2q0 .3-.125 .6t-.425 .65q-.35 .375-.425 .525t-.075 .275q0 .35 .313 .575t.587 .225q.3 0 .563-.162T10 17.2q.375-.45 .538-.575t.362-.125ZM3.5 21q-.6 0-1.05-.45t-.45-1.05v-12.825q0-.575 .45-1.037t1.05-.463h3.675l1.825-2.175h6l1.825 2.175h3.675q.575 0 1.038 .463T22 6.675v12.825q0 .6-.462 1.05T20.5 21H3.5Zm0-1.5h17v-12.825H16.125l-1.825-2.175H9.7l-1.825 2.175H3.5v12.825Zm8.5-6.425Z" />
</vector>

// Jetpack Compose
Icon(painterResource(R.drawable.ic_dirty_lens), contentDescription = "Dirty Lens")

Dirty Lens icon in SVG

npm install @material-symbols/svg-400

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

<!-- or load it from a CDN -->
<img src="https://cdn.jsdelivr.net/npm/@material-symbols/svg-400@0.47.5/outlined/dirty_lens.svg" width="24" height="24" alt="Dirty Lens">

Dirty Lens 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

NameDirty Lens
Ligaturedirty_lens
Code pointU+EF4B
CategoryImages
StylesOutlined, Rounded, Sharp — each unfilled or filled
Weights100, 200, 300, 400, 500, 600, 700
Files@material-symbols/svg-400/outlined/dirty_lens.svg, dirty_lens-fill.svg
FlutterSymbols.dirty_lens (Material Icons: Icons.dirty_lens)
MUI@mui/icons-material/DirtyLens
LicenseApache License 2.0 (© Google LLC)

Keywords

imagesmediaalertimagephotowarningnotificationpicturephotographycameraobjectequipment

Related icons