UNPKG

styled-icons

Version:

Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components

14 lines (13 loc) 891 B
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var Pin = React.forwardRef(function (props, ref) { var attrs = { "fill": "currentColor", "xmlns": "http://www.w3.org/2000/svg", }; return (React.createElement(StyledIconBase, __assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }), React.createElement("path", { d: "M12 22l1-2v-3h5a1 1 0 001-1v-1.586c0-.526-.214-1.042-.586-1.414L17 11.586V8a1 1 0 001-1V4c0-1.103-.897-2-2-2H8c-1.103 0-2 .897-2 2v3a1 1 0 001 1v3.586L5.586 13A2.01 2.01 0 005 14.414V16a1 1 0 001 1h5v3l1 2zM8 4h8v2H8V4zM7 14.414l1.707-1.707A.996.996 0 009 12V8h6v4c0 .266.105.52.293.707L17 14.414V15H7v-.586z", key: "k0" }))); }); Pin.displayName = 'Pin'; export var PinDimensions = { height: 24, width: 24 };