UNPKG

styled-icons

Version:

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

14 lines (13 loc) 1.44 kB
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var PointOfInterestOutline = 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: "M16.5 4C18.43 4 20 5.57 20 7.5S18.43 11 16.5 11H15v2h1.5c1.93 0 3.5 1.57 3.5 3.5S18.43 20 16.5 20 13 18.43 13 16.5V15h-2v1.5c0 1.93-1.57 3.5-3.5 3.5S4 18.43 4 16.5 5.57 13 7.5 13H9v-2H7.5C5.57 11 4 9.43 4 7.5S5.57 4 7.5 4 11 5.57 11 7.5V9h2V7.5C13 5.57 14.57 4 16.5 4M15 9h1.5A1.501 1.501 0 1015 7.5V9M7.5 9H9V7.5a1.501 1.501 0 00-3 0C6 8.326 6.673 9 7.5 9m9 9a1.501 1.501 0 000-3H15v1.5c0 .826.673 1.5 1.5 1.5m-9 0c.827 0 1.5-.674 1.5-1.5V15H7.5a1.501 1.501 0 000 3m9-16A5.498 5.498 0 0012 4.341 5.498 5.498 0 007.5 2 5.506 5.506 0 002 7.5c0 1.857.926 3.504 2.341 4.5A5.498 5.498 0 002 16.5C2 19.532 4.467 22 7.5 22a5.498 5.498 0 004.5-2.341A5.498 5.498 0 0016.5 22c3.033 0 5.5-2.468 5.5-5.5a5.498 5.498 0 00-2.341-4.5A5.498 5.498 0 0022 7.5C22 4.468 19.533 2 16.5 2zM13 11h-2v2h2z", key: "k0" }))); }); PointOfInterestOutline.displayName = 'PointOfInterestOutline'; export var PointOfInterestOutlineDimensions = { height: 24, width: 24 };