@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.55 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 StyledUserLargeSlashSolid = ({
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.6837 14L8.39999 14C5.08649 14 2.39999 16.6861 2.39999 19.9662C2.36624 20.6637 2.93737 21.2 3.56624 21.2L20.3662 21.1999C20.3668 21.1999 20.3657 21.1999 20.3662 21.1999L19.8364 21.1998L10.6837 14ZM23.655 19.5913L14.2987 12.26C16.1265 11.4313 17.3981 9.55625 17.3981 7.4C17.3981 4.41763 14.9805 2.03375 12.0319 2.03375C9.42037 2.03375 7.25812 3.89262 6.75937 6.3575L1.45537 2.19159C1.29037 2.0627 1.09462 2 0.901119 2C0.634119 2 0.369181 2.11835 0.192256 2.34451C-0.114756 2.73601 -0.0468063 3.30189 0.344581 3.60826L22.545 21.0088C22.9387 21.3164 23.5035 21.246 23.8084 20.8558C24.1162 20.465 24.045 19.8988 23.655 19.5913Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledUserLargeSlashSolid);
const UserLargeSlashSolid = /*#__PURE__*/memo(ForwardRef);
export default UserLargeSlashSolid;