pin from Framework7 Icons by Vladimir Kharlampidi · Outline · MIT Free for personal and commercial use.

Name
pin
Set
Framework7 Icons
Style
Outline
Viewbox
56×56
License
MIT

1 other variant in Framework7 Icons

The same icon in other sets

Related icons in Framework7 Icons

Use the pin icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 56 56"><path fill="currentColor" d="M13.422 35.969h12.516v12.047c0 3.562 1.5 6.562 2.085 6.562c.563 0 2.063-3 2.063-6.562V35.969h12.492c1.617 0 2.79-1.032 2.79-2.602c0-.984-.306-1.687-.985-2.414l-7.172-7.781c-.492-.516-.797-.89-.68-1.852l1.196-8.554c.07-.492.117-.774.562-1.078l5.742-4.172c1.29-.938 1.852-2.086 1.852-3.141c0-1.57-1.266-2.953-3.07-2.953H13.186c-1.804 0-3.07 1.383-3.07 2.953c0 1.055.563 2.203 1.828 3.14l5.766 4.173c.445.304.492.585.562 1.078l1.196 8.554c.14.961-.188 1.336-.68 1.852l-7.172 7.781c-.68.727-.984 1.43-.984 2.414c0 1.57 1.172 2.602 2.789 2.602m3.047-3.774c-.211 0-.352-.14-.352-.351c0-.14.094-.282.211-.399l6-6.28c.774-.774 1.078-1.618.985-2.485l-1.454-11.297c-.117-.914-.422-1.594-1.101-2.063l-5.086-3.375c-.164-.117-.211-.234-.211-.398c0-.211.164-.352.375-.352h24.328c.211 0 .375.14.375.352c0 .164-.047.281-.21.398L35.241 9.32c-.68.47-.984 1.149-1.101 2.063L32.688 22.68c-.094.867.21 1.71.96 2.484l6.024 6.281a.58.58 0 0 1 .187.399c0 .21-.117.351-.328.351Z"/></svg>

React

import type { SVGProps } from "react";

export function F7Pin(props: SVGProps<SVGSVGElement>) {
  return (
    <svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 56 56"><path fill="currentColor" d="M13.422 35.969h12.516v12.047c0 3.562 1.5 6.562 2.085 6.562c.563 0 2.063-3 2.063-6.562V35.969h12.492c1.617 0 2.79-1.032 2.79-2.602c0-.984-.306-1.687-.985-2.414l-7.172-7.781c-.492-.516-.797-.89-.68-1.852l1.196-8.554c.07-.492.117-.774.562-1.078l5.742-4.172c1.29-.938 1.852-2.086 1.852-3.141c0-1.57-1.266-2.953-3.07-2.953H13.186c-1.804 0-3.07 1.383-3.07 2.953c0 1.055.563 2.203 1.828 3.14l5.766 4.173c.445.304.492.585.562 1.078l1.196 8.554c.14.961-.188 1.336-.68 1.852l-7.172 7.781c-.68.727-.984 1.43-.984 2.414c0 1.57 1.172 2.602 2.789 2.602m3.047-3.774c-.211 0-.352-.14-.352-.351c0-.14.094-.282.211-.399l6-6.28c.774-.774 1.078-1.618.985-2.485l-1.454-11.297c-.117-.914-.422-1.594-1.101-2.063l-5.086-3.375c-.164-.117-.211-.234-.211-.398c0-.211.164-.352.375-.352h24.328c.211 0 .375.14.375.352c0 .164-.047.281-.21.398L35.241 9.32c-.68.47-.984 1.149-1.101 2.063L32.688 22.68c-.094.867.21 1.71.96 2.484l6.024 6.281a.58.58 0 0 1 .187.399c0 .21-.117.351-.328.351Z"/></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 56 56"><path fill="currentColor" d="M13.422 35.969h12.516v12.047c0 3.562 1.5 6.562 2.085 6.562c.563 0 2.063-3 2.063-6.562V35.969h12.492c1.617 0 2.79-1.032 2.79-2.602c0-.984-.306-1.687-.985-2.414l-7.172-7.781c-.492-.516-.797-.89-.68-1.852l1.196-8.554c.07-.492.117-.774.562-1.078l5.742-4.172c1.29-.938 1.852-2.086 1.852-3.141c0-1.57-1.266-2.953-3.07-2.953H13.186c-1.804 0-3.07 1.383-3.07 2.953c0 1.055.563 2.203 1.828 3.14l5.766 4.173c.445.304.492.585.562 1.078l1.196 8.554c.14.961-.188 1.336-.68 1.852l-7.172 7.781c-.68.727-.984 1.43-.984 2.414c0 1.57 1.172 2.602 2.789 2.602m3.047-3.774c-.211 0-.352-.14-.352-.351c0-.14.094-.282.211-.399l6-6.28c.774-.774 1.078-1.618.985-2.485l-1.454-11.297c-.117-.914-.422-1.594-1.101-2.063l-5.086-3.375c-.164-.117-.211-.234-.211-.398c0-.211.164-.352.375-.352h24.328c.211 0 .375.14.375.352c0 .164-.047.281-.21.398L35.241 9.32c-.68.47-.984 1.149-1.101 2.063L32.688 22.68c-.094.867.21 1.71.96 2.484l6.024 6.281a.58.58 0 0 1 .187.399c0 .21-.117.351-.328.351Z"/></svg>
</template>

CSS

.icon-pin {
  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%2056%2056%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M13.422%2035.969h12.516v12.047c0%203.562%201.5%206.562%202.085%206.562c.563%200%202.063-3%202.063-6.562V35.969h12.492c1.617%200%202.79-1.032%202.79-2.602c0-.984-.306-1.687-.985-2.414l-7.172-7.781c-.492-.516-.797-.89-.68-1.852l1.196-8.554c.07-.492.117-.774.562-1.078l5.742-4.172c1.29-.938%201.852-2.086%201.852-3.141c0-1.57-1.266-2.953-3.07-2.953H13.186c-1.804%200-3.07%201.383-3.07%202.953c0%201.055.563%202.203%201.828%203.14l5.766%204.173c.445.304.492.585.562%201.078l1.196%208.554c.14.961-.188%201.336-.68%201.852l-7.172%207.781c-.68.727-.984%201.43-.984%202.414c0%201.57%201.172%202.602%202.789%202.602m3.047-3.774c-.211%200-.352-.14-.352-.351c0-.14.094-.282.211-.399l6-6.28c.774-.774%201.078-1.618.985-2.485l-1.454-11.297c-.117-.914-.422-1.594-1.101-2.063l-5.086-3.375c-.164-.117-.211-.234-.211-.398c0-.211.164-.352.375-.352h24.328c.211%200%20.375.14.375.352c0%20.164-.047.281-.21.398L35.241%209.32c-.68.47-.984%201.149-1.101%202.063L32.688%2022.68c-.094.867.21%201.71.96%202.484l6.024%206.281a.58.58%200%200%201%20.187.399c0%20.21-.117.351-.328.351Z%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%2056%2056%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M13.422%2035.969h12.516v12.047c0%203.562%201.5%206.562%202.085%206.562c.563%200%202.063-3%202.063-6.562V35.969h12.492c1.617%200%202.79-1.032%202.79-2.602c0-.984-.306-1.687-.985-2.414l-7.172-7.781c-.492-.516-.797-.89-.68-1.852l1.196-8.554c.07-.492.117-.774.562-1.078l5.742-4.172c1.29-.938%201.852-2.086%201.852-3.141c0-1.57-1.266-2.953-3.07-2.953H13.186c-1.804%200-3.07%201.383-3.07%202.953c0%201.055.563%202.203%201.828%203.14l5.766%204.173c.445.304.492.585.562%201.078l1.196%208.554c.14.961-.188%201.336-.68%201.852l-7.172%207.781c-.68.727-.984%201.43-.984%202.414c0%201.57%201.172%202.602%202.789%202.602m3.047-3.774c-.211%200-.352-.14-.352-.351c0-.14.094-.282.211-.399l6-6.28c.774-.774%201.078-1.618.985-2.485l-1.454-11.297c-.117-.914-.422-1.594-1.101-2.063l-5.086-3.375c-.164-.117-.211-.234-.211-.398c0-.211.164-.352.375-.352h24.328c.211%200%20.375.14.375.352c0%20.164-.047.281-.21.398L35.241%209.32c-.68.47-.984%201.149-1.101%202.063L32.688%2022.68c-.094.867.21%201.71.96%202.484l6.024%206.281a.58.58%200%200%201%20.187.399c0%20.21-.117.351-.328.351Z%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

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