eyedropper-off-24-regular from Fluent UI System Icons by Microsoft Corporation · 24 Regular · MIT Free for personal and commercial use.

Name
eyedropper-off-24-regular
Set
Fluent UI System Icons
Style
24 Regular
Viewbox
24×24
License
MIT

3 other variants in Fluent UI System Icons

The same icon in other sets

Use the eyedropper off icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M8.94 10L2.22 3.28a.75.75 0 0 1 1.06-1.06l18.5 18.5a.75.75 0 0 1-1.06 1.06L14 15.063l-4.78 4.78a2.25 2.25 0 0 1-1.59.658h-.688l-2.347 1.28c-1.533.837-3.21-.841-2.374-2.374L3.5 17.06v-.687c0-.597.237-1.17.66-1.591zm4 4.001L10 11.061l-4.78 4.78a.75.75 0 0 0-.219.53v.88a.75.75 0 0 1-.091.358l-1.372 2.516a.23.23 0 0 0-.033.158a.26.26 0 0 0 .075.138a.26.26 0 0 0 .138.075a.23.23 0 0 0 .159-.032l2.515-1.372a.75.75 0 0 1 .36-.092h.878a.75.75 0 0 0 .53-.22zm5.548-.928a1.75 1.75 0 0 1-1.818.414l-6.156-6.156a1.75 1.75 0 0 1 .414-1.818l.585-.586a1.75 1.75 0 0 1 2.475 0l.013.013l1.97-1.97a3.578 3.578 0 0 1 5.06 5.06L19.061 10l.013.013a1.75 1.75 0 0 1 0 2.475zm-1.457-9.042l-2.5 2.5a.75.75 0 0 1-1.06 0l-.543-.543a.25.25 0 0 0-.354 0l-.586.586a.25.25 0 0 0 0 .353l5.086 5.086a.25.25 0 0 0 .354 0l.585-.586a.25.25 0 0 0 0-.354l-.542-.542a.75.75 0 0 1 0-1.061l2.5-2.5a2.078 2.078 0 1 0-2.94-2.94"/></svg>

React

import type { SVGProps } from "react";

export function FluentEyedropperOff24Regular(props: SVGProps<SVGSVGElement>) {
  return (
    <svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M8.94 10L2.22 3.28a.75.75 0 0 1 1.06-1.06l18.5 18.5a.75.75 0 0 1-1.06 1.06L14 15.063l-4.78 4.78a2.25 2.25 0 0 1-1.59.658h-.688l-2.347 1.28c-1.533.837-3.21-.841-2.374-2.374L3.5 17.06v-.687c0-.597.237-1.17.66-1.591zm4 4.001L10 11.061l-4.78 4.78a.75.75 0 0 0-.219.53v.88a.75.75 0 0 1-.091.358l-1.372 2.516a.23.23 0 0 0-.033.158a.26.26 0 0 0 .075.138a.26.26 0 0 0 .138.075a.23.23 0 0 0 .159-.032l2.515-1.372a.75.75 0 0 1 .36-.092h.878a.75.75 0 0 0 .53-.22zm5.548-.928a1.75 1.75 0 0 1-1.818.414l-6.156-6.156a1.75 1.75 0 0 1 .414-1.818l.585-.586a1.75 1.75 0 0 1 2.475 0l.013.013l1.97-1.97a3.578 3.578 0 0 1 5.06 5.06L19.061 10l.013.013a1.75 1.75 0 0 1 0 2.475zm-1.457-9.042l-2.5 2.5a.75.75 0 0 1-1.06 0l-.543-.543a.25.25 0 0 0-.354 0l-.586.586a.25.25 0 0 0 0 .353l5.086 5.086a.25.25 0 0 0 .354 0l.585-.586a.25.25 0 0 0 0-.354l-.542-.542a.75.75 0 0 1 0-1.061l2.5-2.5a2.078 2.078 0 1 0-2.94-2.94"/></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M8.94 10L2.22 3.28a.75.75 0 0 1 1.06-1.06l18.5 18.5a.75.75 0 0 1-1.06 1.06L14 15.063l-4.78 4.78a2.25 2.25 0 0 1-1.59.658h-.688l-2.347 1.28c-1.533.837-3.21-.841-2.374-2.374L3.5 17.06v-.687c0-.597.237-1.17.66-1.591zm4 4.001L10 11.061l-4.78 4.78a.75.75 0 0 0-.219.53v.88a.75.75 0 0 1-.091.358l-1.372 2.516a.23.23 0 0 0-.033.158a.26.26 0 0 0 .075.138a.26.26 0 0 0 .138.075a.23.23 0 0 0 .159-.032l2.515-1.372a.75.75 0 0 1 .36-.092h.878a.75.75 0 0 0 .53-.22zm5.548-.928a1.75 1.75 0 0 1-1.818.414l-6.156-6.156a1.75 1.75 0 0 1 .414-1.818l.585-.586a1.75 1.75 0 0 1 2.475 0l.013.013l1.97-1.97a3.578 3.578 0 0 1 5.06 5.06L19.061 10l.013.013a1.75 1.75 0 0 1 0 2.475zm-1.457-9.042l-2.5 2.5a.75.75 0 0 1-1.06 0l-.543-.543a.25.25 0 0 0-.354 0l-.586.586a.25.25 0 0 0 0 .353l5.086 5.086a.25.25 0 0 0 .354 0l.585-.586a.25.25 0 0 0 0-.354l-.542-.542a.75.75 0 0 1 0-1.061l2.5-2.5a2.078 2.078 0 1 0-2.94-2.94"/></svg>
</template>

CSS

.icon-eyedropper-off-24-regular {
  width: 24px;
  height: 24px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M8.94%2010L2.22%203.28a.75.75%200%200%201%201.06-1.06l18.5%2018.5a.75.75%200%200%201-1.06%201.06L14%2015.063l-4.78%204.78a2.25%202.25%200%200%201-1.59.658h-.688l-2.347%201.28c-1.533.837-3.21-.841-2.374-2.374L3.5%2017.06v-.687c0-.597.237-1.17.66-1.591zm4%204.001L10%2011.061l-4.78%204.78a.75.75%200%200%200-.219.53v.88a.75.75%200%200%201-.091.358l-1.372%202.516a.23.23%200%200%200-.033.158a.26.26%200%200%200%20.075.138a.26.26%200%200%200%20.138.075a.23.23%200%200%200%20.159-.032l2.515-1.372a.75.75%200%200%201%20.36-.092h.878a.75.75%200%200%200%20.53-.22zm5.548-.928a1.75%201.75%200%200%201-1.818.414l-6.156-6.156a1.75%201.75%200%200%201%20.414-1.818l.585-.586a1.75%201.75%200%200%201%202.475%200l.013.013l1.97-1.97a3.578%203.578%200%200%201%205.06%205.06L19.061%2010l.013.013a1.75%201.75%200%200%201%200%202.475zm-1.457-9.042l-2.5%202.5a.75.75%200%200%201-1.06%200l-.543-.543a.25.25%200%200%200-.354%200l-.586.586a.25.25%200%200%200%200%20.353l5.086%205.086a.25.25%200%200%200%20.354%200l.585-.586a.25.25%200%200%200%200-.354l-.542-.542a.75.75%200%200%201%200-1.061l2.5-2.5a2.078%202.078%200%201%200-2.94-2.94%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M8.94%2010L2.22%203.28a.75.75%200%200%201%201.06-1.06l18.5%2018.5a.75.75%200%200%201-1.06%201.06L14%2015.063l-4.78%204.78a2.25%202.25%200%200%201-1.59.658h-.688l-2.347%201.28c-1.533.837-3.21-.841-2.374-2.374L3.5%2017.06v-.687c0-.597.237-1.17.66-1.591zm4%204.001L10%2011.061l-4.78%204.78a.75.75%200%200%200-.219.53v.88a.75.75%200%200%201-.091.358l-1.372%202.516a.23.23%200%200%200-.033.158a.26.26%200%200%200%20.075.138a.26.26%200%200%200%20.138.075a.23.23%200%200%200%20.159-.032l2.515-1.372a.75.75%200%200%201%20.36-.092h.878a.75.75%200%200%200%20.53-.22zm5.548-.928a1.75%201.75%200%200%201-1.818.414l-6.156-6.156a1.75%201.75%200%200%201%20.414-1.818l.585-.586a1.75%201.75%200%200%201%202.475%200l.013.013l1.97-1.97a3.578%203.578%200%200%201%205.06%205.06L19.061%2010l.013.013a1.75%201.75%200%200%201%200%202.475zm-1.457-9.042l-2.5%202.5a.75.75%200%200%201-1.06%200l-.543-.543a.25.25%200%200%200-.354%200l-.586.586a.25.25%200%200%200%200%20.353l5.086%205.086a.25.25%200%200%200%20.354%200l.585-.586a.25.25%200%200%200%200-.354l-.542-.542a.75.75%200%200%201%200-1.061l2.5-2.5a2.078%202.078%200%201%200-2.94-2.94%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/fluent/eyedropper-off-24-regular.svg?color=%231a73e8&size=48