UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 1.9 kB
import React, { forwardRef, memo } from "react"; import { AccessibleIcon } from "../accessible-icon"; import { StyledSvg, StyledPath } from "../styles"; import { jsx as _jsx } from "react/jsx-runtime"; const StyledMapLocationDotSolid = ({ label, color = "#000000", className = "", css = {}, viewBox = "0 0 24 24" }, ref) => { return /*#__PURE__*/_jsx(AccessibleIcon, { label: label, children: /*#__PURE__*/_jsx(StyledSvg, { className: className, css: css, viewBox: viewBox, xmlns: "http://www.w3.org/2000/svg", xmlnsXlink: "http://www.w3.org/1999/xlink", ref: ref, children: /*#__PURE__*/_jsx(StyledPath, { css: { fill: `${color}` }, d: "M17 6C17 8.275 13.9542 12.3292 12.6167 13.9625C12.2958 14.4 11.7042 14.4 11.3833 13.9625C10.0458 12.3292 7 8.275 7 6C7 3.23875 9.2375 1 12 1C14.7625 1 17 3.23875 17 6ZM12 7.33333C12.9208 7.33333 13.6667 6.5875 13.6667 5.66667C13.6667 4.74625 12.9208 4 12 4C11.0792 4 10.3333 4.74625 10.3333 5.66667C10.3333 6.5875 11.0792 7.33333 12 7.33333ZM17.7333 8.49167C17.7542 8.44167 17.775 8.39167 17.7958 8.3375L22.6292 6.40417C23.2875 6.14167 24 6.625 24 7.33333V18.6167C24 19.025 23.75 19.3917 23.3708 19.5458L17.3333 21.9583V9.35C17.4792 9.0625 17.6125 8.77917 17.7333 8.49167ZM6.26667 8.49167C6.3875 8.77917 6.52083 9.0625 6.66667 9.35V19.825L1.37125 21.9458C0.714583 22.1708 0 21.725 0 21.0167V9.73333C0 9.325 0.248958 8.92083 0.62875 8.80417L5.73333 6.7625C5.83333 7.35417 6.0375 7.94167 6.26667 8.49167ZM13.6583 14.7958C14.2375 14.1083 15.1458 12.9292 16 11.625V22.0125L8 19.725V11.625C8.85417 12.9292 9.7625 14.1083 10.3417 14.7958C11.1958 15.9 12.8042 15.9 13.6583 14.7958Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledMapLocationDotSolid); const MapLocationDotSolid = /*#__PURE__*/memo(ForwardRef); export default MapLocationDotSolid;