@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.34 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 StyledLocationDotSolid = ({
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: "M10.9095 23.4607C8.45631 20.4435 3 13.1309 3 9.02335C3 4.03983 7.03983 0 12.0234 0C17.005 0 21.0467 4.03983 21.0467 9.02335C21.0467 13.1309 15.5481 20.4435 13.1372 23.4607C12.5591 24.1798 11.4876 24.1798 10.9095 23.4607ZM12.0234 12.0311C13.6823 12.0311 15.0311 10.6823 15.0311 9.02335C15.0311 7.36437 13.6823 6.01557 12.0234 6.01557C10.3644 6.01557 9.01557 7.36437 9.01557 9.02335C9.01557 10.6823 10.3644 12.0311 12.0234 12.0311Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledLocationDotSolid);
const LocationDotSolid = /*#__PURE__*/memo(ForwardRef);
export default LocationDotSolid;