UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 1.76 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 StyledUserLargeSlashRegular = ({ 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.655 19.5913L14.2988 12.26C16.1235 11.3953 17.3981 9.55475 17.3981 7.4C17.3981 4.41763 14.9805 2.03375 12.0319 2.03375C9.42301 2.03375 7.24689 3.884 6.74064 6.3425L1.45539 2.19159C1.29039 2.0627 1.09464 2 0.901135 2C0.634135 2 0.369197 2.11835 0.192272 2.34451C-0.114778 2.73575 -0.0467904 3.302 0.344597 3.60838L22.545 21.0088C22.9388 21.3164 23.5035 21.246 23.8084 20.8558C24.1163 20.465 24.045 19.8988 23.655 19.5913ZM8.42626 7.655C8.41876 7.56875 8.40001 7.48625 8.40001 7.4C8.40001 5.41475 10.0151 3.8 12 3.8C13.9853 3.8 15.6 5.41475 15.6 7.4C15.6 9.1745 14.3066 10.6441 12.6146 10.9377L8.42626 7.655ZM4.24126 19.4C4.53327 17.3671 6.28651 15.8 8.40001 15.8H12.9825L10.6853 14.0338L8.40151 14.0337C5.08801 14.0337 2.40151 16.7199 2.40151 20C2.36626 20.6637 2.93739 21.2 3.56626 21.2L19.8375 21.1998L17.5725 19.4H4.24126Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledUserLargeSlashRegular); const UserLargeSlashRegular = /*#__PURE__*/memo(ForwardRef); export default UserLargeSlashRegular;