gesture unlock icon

gesture-unlock-fill from MingCute Icon by MingCute Design · Fill · Apache-2.0 Free for personal and commercial use.

Name
gesture-unlock-fill
Set
MingCute Icon
Style
Fill
Viewbox
24×24
License
Apache 2.0

1 other variant in MingCute Icon

Use the gesture unlock icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" fill-rule="evenodd" d="M3 5.5a2.5 2.5 0 0 1 4.792-1h1.916A2.5 2.5 0 1 1 13 7.792v1.916a2.5 2.5 0 0 1 0 4.584v1.916a2.5 2.5 0 0 1 1.292 1.292h1.916a2.5 2.5 0 1 1 0 2h-1.916A2.5 2.5 0 1 1 11 16.208v-1.916a2.5 2.5 0 0 1 0-4.584V7.792A2.5 2.5 0 0 1 9.708 6.5H7.792A2.5 2.5 0 0 1 3 5.5" clip-rule="evenodd"/><path fill="currentColor" fill-rule="evenodd" d="M3 12a2.5 2.5 0 1 1 5 0a2.5 2.5 0 0 1-5 0m2.5-.5a.5.5 0 1 0 0 1a.5.5 0 0 0 0-1m0 4.5a2.5 2.5 0 1 0 0 5a2.5 2.5 0 0 0 0-5M5 18.5a.5.5 0 1 1 1 0a.5.5 0 0 1-1 0M18.5 3a2.5 2.5 0 1 0 0 5a2.5 2.5 0 0 0 0-5M18 5.5a.5.5 0 1 1 1 0a.5.5 0 0 1-1 0M16 12a2.5 2.5 0 1 1 5 0a2.5 2.5 0 0 1-5 0m2.5-.5a.5.5 0 1 0 0 1a.5.5 0 0 0 0-1" clip-rule="evenodd"/></svg>

React

import type { SVGProps } from "react";

export function MingcuteGestureUnlockFill(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" fillRule="evenodd" d="M3 5.5a2.5 2.5 0 0 1 4.792-1h1.916A2.5 2.5 0 1 1 13 7.792v1.916a2.5 2.5 0 0 1 0 4.584v1.916a2.5 2.5 0 0 1 1.292 1.292h1.916a2.5 2.5 0 1 1 0 2h-1.916A2.5 2.5 0 1 1 11 16.208v-1.916a2.5 2.5 0 0 1 0-4.584V7.792A2.5 2.5 0 0 1 9.708 6.5H7.792A2.5 2.5 0 0 1 3 5.5" clipRule="evenodd"/><path fill="currentColor" fillRule="evenodd" d="M3 12a2.5 2.5 0 1 1 5 0a2.5 2.5 0 0 1-5 0m2.5-.5a.5.5 0 1 0 0 1a.5.5 0 0 0 0-1m0 4.5a2.5 2.5 0 1 0 0 5a2.5 2.5 0 0 0 0-5M5 18.5a.5.5 0 1 1 1 0a.5.5 0 0 1-1 0M18.5 3a2.5 2.5 0 1 0 0 5a2.5 2.5 0 0 0 0-5M18 5.5a.5.5 0 1 1 1 0a.5.5 0 0 1-1 0M16 12a2.5 2.5 0 1 1 5 0a2.5 2.5 0 0 1-5 0m2.5-.5a.5.5 0 1 0 0 1a.5.5 0 0 0 0-1" clipRule="evenodd"/></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" fill-rule="evenodd" d="M3 5.5a2.5 2.5 0 0 1 4.792-1h1.916A2.5 2.5 0 1 1 13 7.792v1.916a2.5 2.5 0 0 1 0 4.584v1.916a2.5 2.5 0 0 1 1.292 1.292h1.916a2.5 2.5 0 1 1 0 2h-1.916A2.5 2.5 0 1 1 11 16.208v-1.916a2.5 2.5 0 0 1 0-4.584V7.792A2.5 2.5 0 0 1 9.708 6.5H7.792A2.5 2.5 0 0 1 3 5.5" clip-rule="evenodd"/><path fill="currentColor" fill-rule="evenodd" d="M3 12a2.5 2.5 0 1 1 5 0a2.5 2.5 0 0 1-5 0m2.5-.5a.5.5 0 1 0 0 1a.5.5 0 0 0 0-1m0 4.5a2.5 2.5 0 1 0 0 5a2.5 2.5 0 0 0 0-5M5 18.5a.5.5 0 1 1 1 0a.5.5 0 0 1-1 0M18.5 3a2.5 2.5 0 1 0 0 5a2.5 2.5 0 0 0 0-5M18 5.5a.5.5 0 1 1 1 0a.5.5 0 0 1-1 0M16 12a2.5 2.5 0 1 1 5 0a2.5 2.5 0 0 1-5 0m2.5-.5a.5.5 0 1 0 0 1a.5.5 0 0 0 0-1" clip-rule="evenodd"/></svg>
</template>

CSS

.icon-gesture-unlock-fill {
  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%20fill-rule%3D%22evenodd%22%20d%3D%22M3%205.5a2.5%202.5%200%200%201%204.792-1h1.916A2.5%202.5%200%201%201%2013%207.792v1.916a2.5%202.5%200%200%201%200%204.584v1.916a2.5%202.5%200%200%201%201.292%201.292h1.916a2.5%202.5%200%201%201%200%202h-1.916A2.5%202.5%200%201%201%2011%2016.208v-1.916a2.5%202.5%200%200%201%200-4.584V7.792A2.5%202.5%200%200%201%209.708%206.5H7.792A2.5%202.5%200%200%201%203%205.5%22%20clip-rule%3D%22evenodd%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20fill-rule%3D%22evenodd%22%20d%3D%22M3%2012a2.5%202.5%200%201%201%205%200a2.5%202.5%200%200%201-5%200m2.5-.5a.5.5%200%201%200%200%201a.5.5%200%200%200%200-1m0%204.5a2.5%202.5%200%201%200%200%205a2.5%202.5%200%200%200%200-5M5%2018.5a.5.5%200%201%201%201%200a.5.5%200%200%201-1%200M18.5%203a2.5%202.5%200%201%200%200%205a2.5%202.5%200%200%200%200-5M18%205.5a.5.5%200%201%201%201%200a.5.5%200%200%201-1%200M16%2012a2.5%202.5%200%201%201%205%200a2.5%202.5%200%200%201-5%200m2.5-.5a.5.5%200%201%200%200%201a.5.5%200%200%200%200-1%22%20clip-rule%3D%22evenodd%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%20fill-rule%3D%22evenodd%22%20d%3D%22M3%205.5a2.5%202.5%200%200%201%204.792-1h1.916A2.5%202.5%200%201%201%2013%207.792v1.916a2.5%202.5%200%200%201%200%204.584v1.916a2.5%202.5%200%200%201%201.292%201.292h1.916a2.5%202.5%200%201%201%200%202h-1.916A2.5%202.5%200%201%201%2011%2016.208v-1.916a2.5%202.5%200%200%201%200-4.584V7.792A2.5%202.5%200%200%201%209.708%206.5H7.792A2.5%202.5%200%200%201%203%205.5%22%20clip-rule%3D%22evenodd%22%2F%3E%3Cpath%20fill%3D%22currentColor%22%20fill-rule%3D%22evenodd%22%20d%3D%22M3%2012a2.5%202.5%200%201%201%205%200a2.5%202.5%200%200%201-5%200m2.5-.5a.5.5%200%201%200%200%201a.5.5%200%200%200%200-1m0%204.5a2.5%202.5%200%201%200%200%205a2.5%202.5%200%200%200%200-5M5%2018.5a.5.5%200%201%201%201%200a.5.5%200%200%201-1%200M18.5%203a2.5%202.5%200%201%200%200%205a2.5%202.5%200%200%200%200-5M18%205.5a.5.5%200%201%201%201%200a.5.5%200%200%201-1%200M16%2012a2.5%202.5%200%201%201%205%200a2.5%202.5%200%200%201-5%200m2.5-.5a.5.5%200%201%200%200%201a.5.5%200%200%200%200-1%22%20clip-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/mingcute/gesture-unlock-fill.svg?color=%231a73e8&size=48