styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
16 lines (15 loc) • 1.01 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
var React = tslib_1.__importStar(require("react"));
var StyledIconBase_1 = require("../../StyledIconBase");
exports.Pin = React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg",
};
return (React.createElement(StyledIconBase_1.StyledIconBase, tslib_1.__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" })));
});
exports.Pin.displayName = 'Pin';
exports.PinDimensions = { height: 24, width: 24 };
;