styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
17 lines (16 loc) • 1.07 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.MapPinUser = 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", { fill: "none", d: "M0 0h24v24H0z", key: "k0" }),
React.createElement("path", { d: "M17.084 15.812a7 7 0 10-10.168 0A5.996 5.996 0 0112 13a5.996 5.996 0 015.084 2.812zm-8.699 1.473L12 20.899l3.615-3.614a4 4 0 00-7.23 0zM12 23.728l-6.364-6.364a9 9 0 1112.728 0L12 23.728zM12 10a1 1 0 100-2 1 1 0 000 2zm0 2a3 3 0 110-6 3 3 0 010 6z", key: "k1" })));
});
exports.MapPinUser.displayName = 'MapPinUser';
exports.MapPinUserDimensions = { height: 24, width: 24 };
;