shield off icon

shield-off from Reicon by REICON · Outline · Security · MIT Free for personal and commercial use.

Name
shield-off
Set
Reicon
Style
Outline
Category
Security
Viewbox
24×24
License
MIT

1 other variant in Reicon

The same icon in other sets

All shield off icons →

More security icons from Reicon

Use the shield off icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><g fill="currentColor"><path d="M10.756 2.55a2.75 2.75 0 0 1 2.485 0l7.098 3.595a.75.75 0 0 1 .411.67v2.024c0 .395-.088 1.286-.205 2.283a11.7 11.7 0 0 1-1.408 4.308a.75.75 0 0 0 1.312.727a13.2 13.2 0 0 0 1.585-4.86c.115-.97.216-1.956.216-2.458V6.814a2.25 2.25 0 0 0-1.233-2.007l-7.098-3.595a4.25 4.25 0 0 0-3.841 0l-3.01 1.526a.75.75 0 1 0 .678 1.338z"/><path fill-rule="evenodd" d="m5.295 4.234l13.377 13.378l.013.012l3.845 3.846a.75.75 0 1 1-1.06 1.06l-3.292-3.291a16.8 16.8 0 0 1-4.453 3.384l-.75.392c-.612.32-1.341.32-1.953 0l-.749-.391a16.74 16.74 0 0 1-5.851-5.088c-1.315-1.836-2.189-3.97-2.456-6.232c-.114-.973-.216-1.962-.216-2.465V6.814a2.25 2.25 0 0 1 1.233-2.007l.507-.257l-2.02-2.02a.75.75 0 0 1 1.06-1.06l2.74 2.739zm11.822 13.944L4.606 5.666l-.945.48a.75.75 0 0 0-.411.668V8.84c0 .396.088 1.29.206 2.289c.235 1.992 1.006 3.889 2.185 5.535a15.24 15.24 0 0 0 5.327 4.632l.749.391a.6.6 0 0 0 .563 0l.75-.392a15.3 15.3 0 0 0 4.087-3.116" clip-rule="evenodd"/></g></svg>

React

import type { SVGProps } from "react";

export function ReiconShieldOff(props: SVGProps<SVGSVGElement>) {
  return (
    <svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><g fill="currentColor"><path d="M10.756 2.55a2.75 2.75 0 0 1 2.485 0l7.098 3.595a.75.75 0 0 1 .411.67v2.024c0 .395-.088 1.286-.205 2.283a11.7 11.7 0 0 1-1.408 4.308a.75.75 0 0 0 1.312.727a13.2 13.2 0 0 0 1.585-4.86c.115-.97.216-1.956.216-2.458V6.814a2.25 2.25 0 0 0-1.233-2.007l-7.098-3.595a4.25 4.25 0 0 0-3.841 0l-3.01 1.526a.75.75 0 1 0 .678 1.338z"/><path fillRule="evenodd" d="m5.295 4.234l13.377 13.378l.013.012l3.845 3.846a.75.75 0 1 1-1.06 1.06l-3.292-3.291a16.8 16.8 0 0 1-4.453 3.384l-.75.392c-.612.32-1.341.32-1.953 0l-.749-.391a16.74 16.74 0 0 1-5.851-5.088c-1.315-1.836-2.189-3.97-2.456-6.232c-.114-.973-.216-1.962-.216-2.465V6.814a2.25 2.25 0 0 1 1.233-2.007l.507-.257l-2.02-2.02a.75.75 0 0 1 1.06-1.06l2.74 2.739zm11.822 13.944L4.606 5.666l-.945.48a.75.75 0 0 0-.411.668V8.84c0 .396.088 1.29.206 2.289c.235 1.992 1.006 3.889 2.185 5.535a15.24 15.24 0 0 0 5.327 4.632l.749.391a.6.6 0 0 0 .563 0l.75-.392a15.3 15.3 0 0 0 4.087-3.116" 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="currentColor"><path d="M10.756 2.55a2.75 2.75 0 0 1 2.485 0l7.098 3.595a.75.75 0 0 1 .411.67v2.024c0 .395-.088 1.286-.205 2.283a11.7 11.7 0 0 1-1.408 4.308a.75.75 0 0 0 1.312.727a13.2 13.2 0 0 0 1.585-4.86c.115-.97.216-1.956.216-2.458V6.814a2.25 2.25 0 0 0-1.233-2.007l-7.098-3.595a4.25 4.25 0 0 0-3.841 0l-3.01 1.526a.75.75 0 1 0 .678 1.338z"/><path fill-rule="evenodd" d="m5.295 4.234l13.377 13.378l.013.012l3.845 3.846a.75.75 0 1 1-1.06 1.06l-3.292-3.291a16.8 16.8 0 0 1-4.453 3.384l-.75.392c-.612.32-1.341.32-1.953 0l-.749-.391a16.74 16.74 0 0 1-5.851-5.088c-1.315-1.836-2.189-3.97-2.456-6.232c-.114-.973-.216-1.962-.216-2.465V6.814a2.25 2.25 0 0 1 1.233-2.007l.507-.257l-2.02-2.02a.75.75 0 0 1 1.06-1.06l2.74 2.739zm11.822 13.944L4.606 5.666l-.945.48a.75.75 0 0 0-.411.668V8.84c0 .396.088 1.29.206 2.289c.235 1.992 1.006 3.889 2.185 5.535a15.24 15.24 0 0 0 5.327 4.632l.749.391a.6.6 0 0 0 .563 0l.75-.392a15.3 15.3 0 0 0 4.087-3.116" clip-rule="evenodd"/></g></svg>
</template>

CSS

.icon-shield-off {
  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%22currentColor%22%3E%3Cpath%20d%3D%22M10.756%202.55a2.75%202.75%200%200%201%202.485%200l7.098%203.595a.75.75%200%200%201%20.411.67v2.024c0%20.395-.088%201.286-.205%202.283a11.7%2011.7%200%200%201-1.408%204.308a.75.75%200%200%200%201.312.727a13.2%2013.2%200%200%200%201.585-4.86c.115-.97.216-1.956.216-2.458V6.814a2.25%202.25%200%200%200-1.233-2.007l-7.098-3.595a4.25%204.25%200%200%200-3.841%200l-3.01%201.526a.75.75%200%201%200%20.678%201.338z%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22m5.295%204.234l13.377%2013.378l.013.012l3.845%203.846a.75.75%200%201%201-1.06%201.06l-3.292-3.291a16.8%2016.8%200%200%201-4.453%203.384l-.75.392c-.612.32-1.341.32-1.953%200l-.749-.391a16.74%2016.74%200%200%201-5.851-5.088c-1.315-1.836-2.189-3.97-2.456-6.232c-.114-.973-.216-1.962-.216-2.465V6.814a2.25%202.25%200%200%201%201.233-2.007l.507-.257l-2.02-2.02a.75.75%200%200%201%201.06-1.06l2.74%202.739zm11.822%2013.944L4.606%205.666l-.945.48a.75.75%200%200%200-.411.668V8.84c0%20.396.088%201.29.206%202.289c.235%201.992%201.006%203.889%202.185%205.535a15.24%2015.24%200%200%200%205.327%204.632l.749.391a.6.6%200%200%200%20.563%200l.75-.392a15.3%2015.3%200%200%200%204.087-3.116%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%22currentColor%22%3E%3Cpath%20d%3D%22M10.756%202.55a2.75%202.75%200%200%201%202.485%200l7.098%203.595a.75.75%200%200%201%20.411.67v2.024c0%20.395-.088%201.286-.205%202.283a11.7%2011.7%200%200%201-1.408%204.308a.75.75%200%200%200%201.312.727a13.2%2013.2%200%200%200%201.585-4.86c.115-.97.216-1.956.216-2.458V6.814a2.25%202.25%200%200%200-1.233-2.007l-7.098-3.595a4.25%204.25%200%200%200-3.841%200l-3.01%201.526a.75.75%200%201%200%20.678%201.338z%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22m5.295%204.234l13.377%2013.378l.013.012l3.845%203.846a.75.75%200%201%201-1.06%201.06l-3.292-3.291a16.8%2016.8%200%200%201-4.453%203.384l-.75.392c-.612.32-1.341.32-1.953%200l-.749-.391a16.74%2016.74%200%200%201-5.851-5.088c-1.315-1.836-2.189-3.97-2.456-6.232c-.114-.973-.216-1.962-.216-2.465V6.814a2.25%202.25%200%200%201%201.233-2.007l.507-.257l-2.02-2.02a.75.75%200%200%201%201.06-1.06l2.74%202.739zm11.822%2013.944L4.606%205.666l-.945.48a.75.75%200%200%200-.411.668V8.84c0%20.396.088%201.29.206%202.289c.235%201.992%201.006%203.889%202.185%205.535a15.24%2015.24%200%200%200%205.327%204.632l.749.391a.6.6%200%200%200%20.563%200l.75-.392a15.3%2015.3%200%200%200%204.087-3.116%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/shield-off.svg?color=%231a73e8&size=48