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.18 kB
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var LocationOutline = 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 5c1.609 0 3.12.614 4.254 1.73C17.38 7.837 18 9.309 18 10.87s-.62 3.03-1.745 4.139L12 19.193l-4.254-4.186c-1.125-1.107-1.745-2.576-1.745-4.139s.62-3.032 1.745-4.141A6.04 6.04 0 0112 5m0-2a8.04 8.04 0 00-5.657 2.305 7.782 7.782 0 000 11.131L12 21.999l5.657-5.565a7.78 7.78 0 000-11.129A8.039 8.039 0 0012 3zm0 5.499c.668 0 1.296.26 1.768.731a2.502 2.502 0 010 3.537c-.473.472-1.1.731-1.768.731s-1.295-.26-1.768-.731a2.502 2.502 0 010-3.537A2.49 2.49 0 0112 8.499m0-1a3.501 3.501 0 102.475 5.975 3.503 3.503 0 000-4.951A3.489 3.489 0 0012 7.499z", key: "k0" }))); }); LocationOutline.displayName = 'LocationOutline'; export var LocationOutlineDimensions = { height: 24, width: 24 };