UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 1.93 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 StyledUserShieldRegular = ({ 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: "M23.3363 12.1663L19.02 10.4784C18.8653 10.4173 18.5468 10.3376 18.1856 10.4784L13.8675 12.1663C13.4625 12.32 13.2 12.6913 13.2 13.0663C13.2 17.2513 15.7781 20.1462 18.1838 21.0875C18.5447 21.2281 18.8588 21.1484 19.0181 21.0875C20.94 20.3713 24 17.7688 24 13.0663C24 12.6913 23.7375 12.32 23.3363 12.1663ZM18.6 19.34V12.245L22.1813 13.6467C21.9713 16.9175 19.8975 18.725 18.6 19.34ZM8.4 11.6C11.0509 11.6 13.2 9.45088 13.2 6.8C13.2 4.14913 11.0509 2 8.4 2C5.74913 2 3.6 4.14913 3.6 6.8C3.6 9.45125 5.74875 11.6 8.4 11.6ZM8.4 3.8C10.0541 3.8 11.4 5.14588 11.4 6.8C11.4 8.45413 10.0541 9.8 8.4 9.8C6.74588 9.8 5.4 8.45375 5.4 6.8C5.4 5.14588 6.74625 3.8 8.4 3.8ZM15.855 21.1475C15.7688 21.1663 15.69 21.2 15.6 21.2H1.2C0.537375 21.2 0 20.6626 0 20C0 16.355 2.955 13.4 6.6 13.4H10.2C10.833 13.4 11.4427 13.4943 12.0221 13.6605C12.0588 14.382 12.1607 15.0698 12.3243 15.7178C11.6812 15.3988 10.965 15.2 10.2 15.2H6.6C4.1565 15.2 2.13375 17.0356 1.8375 19.4H14.1075C14.6363 20.0863 15.2288 20.6713 15.855 21.1475Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledUserShieldRegular); const UserShieldRegular = /*#__PURE__*/memo(ForwardRef); export default UserShieldRegular;