@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 2.4 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 StyledGlobeRegular = ({
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: "M12 0C18.6281 0 24 5.37188 24 12C24 18.6281 18.6281 24 12 24C5.37188 24 0 18.6281 0 12C0 5.37188 5.37188 0 12 0ZM12 21.75C12.3469 21.75 13.2234 21.4125 14.2313 19.4813C14.6438 18.6516 14.9578 17.6437 15.2625 16.5H8.7375C9 17.6437 9.35625 18.6516 9.76875 19.4813C10.7344 21.4125 11.6531 21.75 12 21.75ZM8.36719 14.25H15.6328C15.7078 13.5328 15.75 12.7781 15.75 12C15.75 11.2219 15.7078 10.4672 15.6328 9.75H8.36719C8.29219 10.4672 8.25 11.2219 8.25 12C8.25 12.7781 8.29219 13.5328 8.36719 14.25ZM15.2625 7.5C14.9578 6.35625 14.6438 5.34844 14.2313 4.52109C13.2234 2.58844 12.3469 2.25 12 2.25C11.6531 2.25 10.7344 2.58844 9.76875 4.52109C9.35625 5.34844 9 6.35625 8.7375 7.5H15.2625ZM17.8969 9.75C17.9625 10.4766 18 11.2312 18 12C18 12.7688 17.9625 13.5234 17.8969 14.25H21.4875C21.6609 13.5281 21.75 12.7734 21.75 12C21.75 11.2266 21.6609 10.4719 21.4875 9.75H17.8969ZM16.0359 3.12234C16.6969 4.32469 17.2219 5.81719 17.5641 7.5H20.6531C19.65 5.57344 18.0188 4.02563 16.0359 3.12234ZM7.96406 3.12234C5.98125 4.02563 4.35187 5.57344 3.34828 7.5H6.43594C6.77813 5.81719 7.30312 4.32469 7.96406 3.12234ZM2.25 12C2.25 12.7734 2.34047 13.5281 2.51109 14.25H6.10312C6.0375 13.5234 6 12.7688 6 12C6 11.2312 6.0375 10.4766 6.10312 9.75H2.51109C2.34047 10.4719 2.25 11.2266 2.25 12ZM20.6531 16.5H17.5641C17.2219 18.1828 16.6969 19.6734 16.0359 20.8781C18.0188 19.9734 19.65 18.4266 20.6531 16.5ZM6.43594 16.5H3.34828C4.35187 18.4266 5.98125 19.9734 7.96406 20.8781C7.30312 19.6734 6.77813 18.1828 6.43594 16.5Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledGlobeRegular);
const GlobeRegular = /*#__PURE__*/memo(ForwardRef);
export default GlobeRegular;