dropper icon

dropper from Reicon by REICON · Outline · Medicine · MIT Free for personal and commercial use.

Name
dropper
Set
Reicon
Style
Outline
Category
Medicine
Viewbox
24×24
License
MIT

2 other variants in Reicon

The same icon in other sets

All dropper icons →

More medicine icons from Reicon

Use the dropper icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><g fill="none"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M22 10h-4m4 3h-3"/><path fill="currentColor" fill-rule="evenodd" d="M11.94 1.25a3.75 3.75 0 0 1 2.354.852l.003.003l.035.029l.07.058c.257.207.546.35.848.428V2a.75.75 0 0 1 1.5 0v.489a2.2 2.2 0 0 0 .632-.432l.065-.065l.523-.522a.75.75 0 1 1 1.06 1.06l-.527.527l-.076.076a3.74 3.74 0 0 1-1.677.94V5.25h1.302c.899 0 1.648 0 2.242.08c.628.084 1.195.27 1.65.725c.456.456.642 1.023.726 1.65c.08.595.08 1.344.08 2.243v6.559c0 .868-.366 1.696-1.008 2.28a8.5 8.5 0 0 1-4.992 2.19V22a.75.75 0 0 1-1.5 0v-1.023a8.5 8.5 0 0 1-4.992-2.19a3.08 3.08 0 0 1-1.008-2.28V9.948c0-.898 0-1.648.08-2.242c.084-.628.27-1.195.726-1.65c.455-.456 1.022-.642 1.65-.726c.594-.08 1.344-.08 2.242-.08h1.302V4.149a3.74 3.74 0 0 1-1.79-.79l-.083-.069l-.004-.003l-.031-.026l-.002-.001a2.25 2.25 0 0 0-1.408-.51H8l-3.192.103c-.734.099-1.122.28-1.399.556c-.277.277-.457.665-.556 1.4C2.752 5.562 2.75 6.564 2.75 8v14.25a.75.75 0 0 1-1.5 0V7.945c0-1.367 0-2.47.117-3.337c.12-.9.38-1.658.981-2.26c.602-.602 1.36-.86 2.26-.981c.867-.117 1.97-.117 3.337-.117h3.996m-.035 5.567c-.461.062-.659.169-.789.3s-.237.327-.3.788c-.064.483-.066 1.131-.066 2.095v6.507c0 .446.188.871.518 1.171a7.03 7.03 0 0 0 9.464 0c.33-.3.518-.725.518-1.171V10c0-.964-.002-1.612-.067-2.095c-.062-.461-.169-.659-.3-.789s-.327-.237-.788-.3c-.483-.064-1.131-.066-2.095-.066h-4c-.964 0-1.612.002-2.095.067" clip-rule="evenodd"/></g></svg>

React

import type { SVGProps } from "react";

export function ReiconDropper(props: SVGProps<SVGSVGElement>) {
  return (
    <svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><g fill="none"><path stroke="currentColor" strokeLinecap="round" strokeLinejoin="round" strokeWidth="1.5" d="M22 10h-4m4 3h-3"/><path fill="currentColor" fillRule="evenodd" d="M11.94 1.25a3.75 3.75 0 0 1 2.354.852l.003.003l.035.029l.07.058c.257.207.546.35.848.428V2a.75.75 0 0 1 1.5 0v.489a2.2 2.2 0 0 0 .632-.432l.065-.065l.523-.522a.75.75 0 1 1 1.06 1.06l-.527.527l-.076.076a3.74 3.74 0 0 1-1.677.94V5.25h1.302c.899 0 1.648 0 2.242.08c.628.084 1.195.27 1.65.725c.456.456.642 1.023.726 1.65c.08.595.08 1.344.08 2.243v6.559c0 .868-.366 1.696-1.008 2.28a8.5 8.5 0 0 1-4.992 2.19V22a.75.75 0 0 1-1.5 0v-1.023a8.5 8.5 0 0 1-4.992-2.19a3.08 3.08 0 0 1-1.008-2.28V9.948c0-.898 0-1.648.08-2.242c.084-.628.27-1.195.726-1.65c.455-.456 1.022-.642 1.65-.726c.594-.08 1.344-.08 2.242-.08h1.302V4.149a3.74 3.74 0 0 1-1.79-.79l-.083-.069l-.004-.003l-.031-.026l-.002-.001a2.25 2.25 0 0 0-1.408-.51H8l-3.192.103c-.734.099-1.122.28-1.399.556c-.277.277-.457.665-.556 1.4C2.752 5.562 2.75 6.564 2.75 8v14.25a.75.75 0 0 1-1.5 0V7.945c0-1.367 0-2.47.117-3.337c.12-.9.38-1.658.981-2.26c.602-.602 1.36-.86 2.26-.981c.867-.117 1.97-.117 3.337-.117h3.996m-.035 5.567c-.461.062-.659.169-.789.3s-.237.327-.3.788c-.064.483-.066 1.131-.066 2.095v6.507c0 .446.188.871.518 1.171a7.03 7.03 0 0 0 9.464 0c.33-.3.518-.725.518-1.171V10c0-.964-.002-1.612-.067-2.095c-.062-.461-.169-.659-.3-.789s-.327-.237-.788-.3c-.483-.064-1.131-.066-2.095-.066h-4c-.964 0-1.612.002-2.095.067" clipRule="evenodd"/></g></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><g fill="none"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M22 10h-4m4 3h-3"/><path fill="currentColor" fill-rule="evenodd" d="M11.94 1.25a3.75 3.75 0 0 1 2.354.852l.003.003l.035.029l.07.058c.257.207.546.35.848.428V2a.75.75 0 0 1 1.5 0v.489a2.2 2.2 0 0 0 .632-.432l.065-.065l.523-.522a.75.75 0 1 1 1.06 1.06l-.527.527l-.076.076a3.74 3.74 0 0 1-1.677.94V5.25h1.302c.899 0 1.648 0 2.242.08c.628.084 1.195.27 1.65.725c.456.456.642 1.023.726 1.65c.08.595.08 1.344.08 2.243v6.559c0 .868-.366 1.696-1.008 2.28a8.5 8.5 0 0 1-4.992 2.19V22a.75.75 0 0 1-1.5 0v-1.023a8.5 8.5 0 0 1-4.992-2.19a3.08 3.08 0 0 1-1.008-2.28V9.948c0-.898 0-1.648.08-2.242c.084-.628.27-1.195.726-1.65c.455-.456 1.022-.642 1.65-.726c.594-.08 1.344-.08 2.242-.08h1.302V4.149a3.74 3.74 0 0 1-1.79-.79l-.083-.069l-.004-.003l-.031-.026l-.002-.001a2.25 2.25 0 0 0-1.408-.51H8l-3.192.103c-.734.099-1.122.28-1.399.556c-.277.277-.457.665-.556 1.4C2.752 5.562 2.75 6.564 2.75 8v14.25a.75.75 0 0 1-1.5 0V7.945c0-1.367 0-2.47.117-3.337c.12-.9.38-1.658.981-2.26c.602-.602 1.36-.86 2.26-.981c.867-.117 1.97-.117 3.337-.117h3.996m-.035 5.567c-.461.062-.659.169-.789.3s-.237.327-.3.788c-.064.483-.066 1.131-.066 2.095v6.507c0 .446.188.871.518 1.171a7.03 7.03 0 0 0 9.464 0c.33-.3.518-.725.518-1.171V10c0-.964-.002-1.612-.067-2.095c-.062-.461-.169-.659-.3-.789s-.327-.237-.788-.3c-.483-.064-1.131-.066-2.095-.066h-4c-.964 0-1.612.002-2.095.067" clip-rule="evenodd"/></g></svg>
</template>

CSS

.icon-dropper {
  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%3Cg%20fill%3D%22none%22%3E%3Cpath%20stroke%3D%22currentColor%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.5%22%20d%3D%22M22%2010h-4m4%203h-3%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20fill-rule%3D%22evenodd%22%20d%3D%22M11.94%201.25a3.75%203.75%200%200%201%202.354.852l.003.003l.035.029l.07.058c.257.207.546.35.848.428V2a.75.75%200%200%201%201.5%200v.489a2.2%202.2%200%200%200%20.632-.432l.065-.065l.523-.522a.75.75%200%201%201%201.06%201.06l-.527.527l-.076.076a3.74%203.74%200%200%201-1.677.94V5.25h1.302c.899%200%201.648%200%202.242.08c.628.084%201.195.27%201.65.725c.456.456.642%201.023.726%201.65c.08.595.08%201.344.08%202.243v6.559c0%20.868-.366%201.696-1.008%202.28a8.5%208.5%200%200%201-4.992%202.19V22a.75.75%200%200%201-1.5%200v-1.023a8.5%208.5%200%200%201-4.992-2.19a3.08%203.08%200%200%201-1.008-2.28V9.948c0-.898%200-1.648.08-2.242c.084-.628.27-1.195.726-1.65c.455-.456%201.022-.642%201.65-.726c.594-.08%201.344-.08%202.242-.08h1.302V4.149a3.74%203.74%200%200%201-1.79-.79l-.083-.069l-.004-.003l-.031-.026l-.002-.001a2.25%202.25%200%200%200-1.408-.51H8l-3.192.103c-.734.099-1.122.28-1.399.556c-.277.277-.457.665-.556%201.4C2.752%205.562%202.75%206.564%202.75%208v14.25a.75.75%200%200%201-1.5%200V7.945c0-1.367%200-2.47.117-3.337c.12-.9.38-1.658.981-2.26c.602-.602%201.36-.86%202.26-.981c.867-.117%201.97-.117%203.337-.117h3.996m-.035%205.567c-.461.062-.659.169-.789.3s-.237.327-.3.788c-.064.483-.066%201.131-.066%202.095v6.507c0%20.446.188.871.518%201.171a7.03%207.03%200%200%200%209.464%200c.33-.3.518-.725.518-1.171V10c0-.964-.002-1.612-.067-2.095c-.062-.461-.169-.659-.3-.789s-.327-.237-.788-.3c-.483-.064-1.131-.066-2.095-.066h-4c-.964%200-1.612.002-2.095.067%22%20clip-rule%3D%22evenodd%22%2F%3E%3C%2Fg%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%3Cg%20fill%3D%22none%22%3E%3Cpath%20stroke%3D%22currentColor%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.5%22%20d%3D%22M22%2010h-4m4%203h-3%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20fill-rule%3D%22evenodd%22%20d%3D%22M11.94%201.25a3.75%203.75%200%200%201%202.354.852l.003.003l.035.029l.07.058c.257.207.546.35.848.428V2a.75.75%200%200%201%201.5%200v.489a2.2%202.2%200%200%200%20.632-.432l.065-.065l.523-.522a.75.75%200%201%201%201.06%201.06l-.527.527l-.076.076a3.74%203.74%200%200%201-1.677.94V5.25h1.302c.899%200%201.648%200%202.242.08c.628.084%201.195.27%201.65.725c.456.456.642%201.023.726%201.65c.08.595.08%201.344.08%202.243v6.559c0%20.868-.366%201.696-1.008%202.28a8.5%208.5%200%200%201-4.992%202.19V22a.75.75%200%200%201-1.5%200v-1.023a8.5%208.5%200%200%201-4.992-2.19a3.08%203.08%200%200%201-1.008-2.28V9.948c0-.898%200-1.648.08-2.242c.084-.628.27-1.195.726-1.65c.455-.456%201.022-.642%201.65-.726c.594-.08%201.344-.08%202.242-.08h1.302V4.149a3.74%203.74%200%200%201-1.79-.79l-.083-.069l-.004-.003l-.031-.026l-.002-.001a2.25%202.25%200%200%200-1.408-.51H8l-3.192.103c-.734.099-1.122.28-1.399.556c-.277.277-.457.665-.556%201.4C2.752%205.562%202.75%206.564%202.75%208v14.25a.75.75%200%200%201-1.5%200V7.945c0-1.367%200-2.47.117-3.337c.12-.9.38-1.658.981-2.26c.602-.602%201.36-.86%202.26-.981c.867-.117%201.97-.117%203.337-.117h3.996m-.035%205.567c-.461.062-.659.169-.789.3s-.237.327-.3.788c-.064.483-.066%201.131-.066%202.095v6.507c0%20.446.188.871.518%201.171a7.03%207.03%200%200%200%209.464%200c.33-.3.518-.725.518-1.171V10c0-.964-.002-1.612-.067-2.095c-.062-.461-.169-.659-.3-.789s-.327-.237-.788-.3c-.483-.064-1.131-.066-2.095-.066h-4c-.964%200-1.612.002-2.095.067%22%20clip-rule%3D%22evenodd%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/reicon/dropper.svg?color=%231a73e8&size=48