@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 2.59 kB
JavaScript
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 StyledMapLocationDotRegular = ({
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 5.9625C17 6.35833 16.925 6.7625 16.7542 7.19167C16.5542 7.92083 16.1417 8.8125 15.65 9.65833L15.6458 9.62917C15.5167 9.8875 15.3833 10.1125 15.2458 10.3333C15.0625 10.625 14.8708 10.8792 14.6833 11.2L14.6667 11.225C13.9125 12.3458 13.1375 13.35 12.6167 13.9625C12.2958 14.4 11.7042 14.4 11.3833 13.9625C10.8625 13.35 10.0875 12.3458 9.33333 11.225C8.56667 10.0875 7.82083 8.82917 7.3875 7.70417C7.35417 7.61667 7.32083 7.52917 7.25417 7.44167C7.10833 6.91667 7 6.42917 7 6C7 5.80417 7.0125 5.6125 7.03333 5.425C7.31667 2.935 9.43333 1 12 1C14.7625 1 17 3.23875 17 6V5.9625ZM12 7.29583C12.9208 7.29583 13.6667 6.5875 13.6667 5.62917C13.6667 4.74625 12.9208 3.9625 12 3.9625C11.0792 3.9625 10.3333 4.74625 10.3333 5.62917C10.3333 6.5875 11.0792 7.29583 12 7.29583ZM14.6667 13.525C15.2292 12.7667 15.8667 11.8625 16.4458 10.925C16.5208 10.8042 16.5917 10.6833 16.6667 10.5625V19.9042L22 17.9667V7.42917L17.4708 9.075C17.5625 8.87917 17.65 8.6875 17.7333 8.49167C17.9792 7.90833 18.1917 7.27917 18.2833 6.65L22.6583 5.06C22.9667 4.94875 23.3083 4.99375 23.575 5.17917C23.8417 5.36667 24 5.675 24 5.9625V18.6667C24 19.0875 23.7375 19.4625 23.3417 19.6083L16.0083 22.275C15.7875 22.3542 15.5458 22.3542 15.325 22.275L8.33333 19.7292L1.34167 22.275C1.035 22.3833 0.693333 22.3417 0.42625 22.1542C0.159125 21.9667 0 21.6583 0 21.3333V8.62917C0 8.24583 0.263083 7.87083 0.658333 7.725L5.66667 5.90417C5.66667 5.9375 5.66667 5.96667 5.66667 5.9625C5.66667 6.62917 5.82083 7.27917 6.0375 7.9L2 9.36667V19.9042L7.33333 17.9667V10.5625C7.40833 10.6833 7.47917 10.8042 7.55417 10.925C8.13333 11.8625 8.77083 12.7667 9.33333 13.525V17.9667L14.6667 19.9042V13.525Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledMapLocationDotRegular);
const MapLocationDotRegular = /*#__PURE__*/memo(ForwardRef);
export default MapLocationDotRegular;