@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.46 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 StyledLocationCheckSolid = ({
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.4607ZM16.5397 7.52416C17.0191 7.12469 17.0191 6.41034 16.5397 5.96857C16.1403 5.5315 15.4259 5.5315 14.9841 5.96857L10.5195 10.4379L8.64429 8.60038C8.24482 8.16331 7.53047 8.16331 7.09012 8.60038C6.64976 9.04215 6.64976 9.7565 7.09012 10.156L9.72052 12.7878C10.1623 13.2671 10.8766 13.2671 11.2761 12.7878L16.5397 7.52416Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledLocationCheckSolid);
const LocationCheckSolid = /*#__PURE__*/memo(ForwardRef);
export default LocationCheckSolid;