pin off icon
pin-off from Reicon by REICON · Outline · UI · MIT Free for personal and commercial use.
- Name
- pin-off
- Set
- Reicon
- Style
- Outline
- Category
- UI
- Viewbox
- 24×24
- License
- MIT
1 other variant in Reicon
The same icon in other sets
All pin off icons →More ui icons from Reicon
Use the pin off icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><g fill="currentColor"><path fill-rule="evenodd" d="M2.53 1.47a.75.75 0 0 0-1.06 1.06l3.004 3.004A8.7 8.7 0 0 0 3.25 10c0 3.795 2.278 6.73 4.692 9.412c.683.758 2.26 2.22 3.05 2.945a1.49 1.49 0 0 0 2.015 0c.79-.725 2.368-2.187 3.05-2.945c.363-.403.726-.805 1.079-1.216l4.334 4.334a.75.75 0 1 0 1.06-1.06l-4.907-4.908l-.013-.013L5.972 4.911l-.019-.018zm3.046 5.166A7.2 7.2 0 0 0 4.75 10c0 3.588 2.283 6.16 4.185 8.273l.122.135c.622.69 2.13 2.092 2.943 2.837c.813-.745 2.321-2.146 2.943-2.837l.116-.13c.324-.36.667-.74 1.013-1.146z" clip-rule="evenodd"/><path d="M7.86 4.047A7.25 7.25 0 0 1 19.25 10c0 1.625-.487 3.066-1.195 4.35a.75.75 0 1 0 1.313.724c.798-1.447 1.382-3.136 1.382-5.074A8.75 8.75 0 0 0 7.003 2.816a.75.75 0 1 0 .858 1.231"/><path d="M11.679 8.28q.156-.03.322-.03a1.75 1.75 0 0 1 1.72 2.072a.75.75 0 1 0 1.475.274a3.25 3.25 0 0 0-3.791-3.791a.75.75 0 0 0 .274 1.474"/></g></svg>
React
import type { SVGProps } from "react";
export function ReiconPinOff(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 fillRule="evenodd" d="M2.53 1.47a.75.75 0 0 0-1.06 1.06l3.004 3.004A8.7 8.7 0 0 0 3.25 10c0 3.795 2.278 6.73 4.692 9.412c.683.758 2.26 2.22 3.05 2.945a1.49 1.49 0 0 0 2.015 0c.79-.725 2.368-2.187 3.05-2.945c.363-.403.726-.805 1.079-1.216l4.334 4.334a.75.75 0 1 0 1.06-1.06l-4.907-4.908l-.013-.013L5.972 4.911l-.019-.018zm3.046 5.166A7.2 7.2 0 0 0 4.75 10c0 3.588 2.283 6.16 4.185 8.273l.122.135c.622.69 2.13 2.092 2.943 2.837c.813-.745 2.321-2.146 2.943-2.837l.116-.13c.324-.36.667-.74 1.013-1.146z" clipRule="evenodd"/><path d="M7.86 4.047A7.25 7.25 0 0 1 19.25 10c0 1.625-.487 3.066-1.195 4.35a.75.75 0 1 0 1.313.724c.798-1.447 1.382-3.136 1.382-5.074A8.75 8.75 0 0 0 7.003 2.816a.75.75 0 1 0 .858 1.231"/><path d="M11.679 8.28q.156-.03.322-.03a1.75 1.75 0 0 1 1.72 2.072a.75.75 0 1 0 1.475.274a3.25 3.25 0 0 0-3.791-3.791a.75.75 0 0 0 .274 1.474"/></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 fill-rule="evenodd" d="M2.53 1.47a.75.75 0 0 0-1.06 1.06l3.004 3.004A8.7 8.7 0 0 0 3.25 10c0 3.795 2.278 6.73 4.692 9.412c.683.758 2.26 2.22 3.05 2.945a1.49 1.49 0 0 0 2.015 0c.79-.725 2.368-2.187 3.05-2.945c.363-.403.726-.805 1.079-1.216l4.334 4.334a.75.75 0 1 0 1.06-1.06l-4.907-4.908l-.013-.013L5.972 4.911l-.019-.018zm3.046 5.166A7.2 7.2 0 0 0 4.75 10c0 3.588 2.283 6.16 4.185 8.273l.122.135c.622.69 2.13 2.092 2.943 2.837c.813-.745 2.321-2.146 2.943-2.837l.116-.13c.324-.36.667-.74 1.013-1.146z" clip-rule="evenodd"/><path d="M7.86 4.047A7.25 7.25 0 0 1 19.25 10c0 1.625-.487 3.066-1.195 4.35a.75.75 0 1 0 1.313.724c.798-1.447 1.382-3.136 1.382-5.074A8.75 8.75 0 0 0 7.003 2.816a.75.75 0 1 0 .858 1.231"/><path d="M11.679 8.28q.156-.03.322-.03a1.75 1.75 0 0 1 1.72 2.072a.75.75 0 1 0 1.475.274a3.25 3.25 0 0 0-3.791-3.791a.75.75 0 0 0 .274 1.474"/></g></svg> </template>
CSS
.icon-pin-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%20fill-rule%3D%22evenodd%22%20d%3D%22M2.53%201.47a.75.75%200%200%200-1.06%201.06l3.004%203.004A8.7%208.7%200%200%200%203.25%2010c0%203.795%202.278%206.73%204.692%209.412c.683.758%202.26%202.22%203.05%202.945a1.49%201.49%200%200%200%202.015%200c.79-.725%202.368-2.187%203.05-2.945c.363-.403.726-.805%201.079-1.216l4.334%204.334a.75.75%200%201%200%201.06-1.06l-4.907-4.908l-.013-.013L5.972%204.911l-.019-.018zm3.046%205.166A7.2%207.2%200%200%200%204.75%2010c0%203.588%202.283%206.16%204.185%208.273l.122.135c.622.69%202.13%202.092%202.943%202.837c.813-.745%202.321-2.146%202.943-2.837l.116-.13c.324-.36.667-.74%201.013-1.146z%22%20clip-rule%3D%22evenodd%22%2F%3E%3Cpath%20d%3D%22M7.86%204.047A7.25%207.25%200%200%201%2019.25%2010c0%201.625-.487%203.066-1.195%204.35a.75.75%200%201%200%201.313.724c.798-1.447%201.382-3.136%201.382-5.074A8.75%208.75%200%200%200%207.003%202.816a.75.75%200%201%200%20.858%201.231%22%2F%3E%3Cpath%20d%3D%22M11.679%208.28q.156-.03.322-.03a1.75%201.75%200%200%201%201.72%202.072a.75.75%200%201%200%201.475.274a3.25%203.25%200%200%200-3.791-3.791a.75.75%200%200%200%20.274%201.474%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%20fill-rule%3D%22evenodd%22%20d%3D%22M2.53%201.47a.75.75%200%200%200-1.06%201.06l3.004%203.004A8.7%208.7%200%200%200%203.25%2010c0%203.795%202.278%206.73%204.692%209.412c.683.758%202.26%202.22%203.05%202.945a1.49%201.49%200%200%200%202.015%200c.79-.725%202.368-2.187%203.05-2.945c.363-.403.726-.805%201.079-1.216l4.334%204.334a.75.75%200%201%200%201.06-1.06l-4.907-4.908l-.013-.013L5.972%204.911l-.019-.018zm3.046%205.166A7.2%207.2%200%200%200%204.75%2010c0%203.588%202.283%206.16%204.185%208.273l.122.135c.622.69%202.13%202.092%202.943%202.837c.813-.745%202.321-2.146%202.943-2.837l.116-.13c.324-.36.667-.74%201.013-1.146z%22%20clip-rule%3D%22evenodd%22%2F%3E%3Cpath%20d%3D%22M7.86%204.047A7.25%207.25%200%200%201%2019.25%2010c0%201.625-.487%203.066-1.195%204.35a.75.75%200%201%200%201.313.724c.798-1.447%201.382-3.136%201.382-5.074A8.75%208.75%200%200%200%207.003%202.816a.75.75%200%201%200%20.858%201.231%22%2F%3E%3Cpath%20d%3D%22M11.679%208.28q.156-.03.322-.03a1.75%201.75%200%200%201%201.72%202.072a.75.75%200%201%200%201.475.274a3.25%203.25%200%200%200-3.791-3.791a.75.75%200%200%200%20.274%201.474%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/pin-off.svg?color=%231a73e8&size=48