UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 2.36 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 StyledUsersSlashRegular = ({ 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: "M6.67875 19.4C7.07138 18.0215 8.45475 17 10.0965 17H13.8713C14.1274 17 14.3738 17.0327 14.6145 17.08L12.2138 15.2H10.1288C7.185 15.2 4.8 17.4388 4.8 20.1987C4.8 20.7537 5.27625 21.2 5.865 21.2H18.135C18.5708 21.2 18.9428 20.953 19.1081 20.6015L17.5725 19.4H6.67875ZM14.8725 12.7063C15.5025 12.02 15.8925 11.1088 15.8925 10.1C15.8925 7.946 14.1473 6.2 12.0263 6.2C10.6789 6.2 9.51113 6.89488 8.81663 7.93625L7.24125 6.72875C7.59 6.24125 7.8 5.6465 7.8 5C7.8 3.34325 6.4575 2 4.8 2C3.8925 2 3.0945 2.41138 2.5485 3.04813L1.45538 2.19159C1.29038 2.0627 1.09463 2 0.901125 2C0.634125 2 0.369225 2.11835 0.192263 2.34455C-0.114787 2.73575 -0.0468 3.302 0.344588 3.60838L22.5108 20.9746C22.9046 21.2822 23.4693 21.2119 23.7742 20.8217C24.0813 20.4302 24.0133 19.8643 23.6219 19.558L14.8725 12.7063ZM13.4588 11.5663L10.1925 9.03875C10.56 8.42 11.2238 8 11.9963 8C13.1531 8 14.0948 8.942 14.0948 10.1C14.0925 10.6888 13.8488 11.2175 13.4588 11.5663ZM19.2 8C20.8568 8 22.2 6.65675 22.2 5C22.2 3.34325 20.8575 2 19.2 2C17.5433 2 16.2 3.34325 16.2 5C16.2 6.65675 17.5425 8 19.2 8ZM18.3788 9.2C17.8988 9.2 17.4458 9.31389 17.034 9.509C17.055 9.70625 17.0925 9.8975 17.0925 10.1C17.0925 11.3641 16.6133 12.5079 15.849 13.4H23.3378C23.7038 13.4 24 13.085 24 12.6987C24 10.7675 22.5225 9.2 20.6963 9.2H18.3788ZM6.97875 11.12L4.56 9.2H3.303C1.479 9.2 0 10.7675 0 12.6987C0 13.085 0.295763 13.4 0.66075 13.4H8.142C7.59 12.755 7.1925 11.9788 6.97875 11.12Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledUsersSlashRegular); const UsersSlashRegular = /*#__PURE__*/memo(ForwardRef); export default UsersSlashRegular;