@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 2.17 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 StyledUserXmarkRegular = ({
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.4316 13.5443H6.581C2.94721 13.5443 0 16.4911 0 20.1253C0 20.8544 0.589366 21.443 1.3162 21.443H15.6972C16.424 21.443 17.0126 20.8544 17.0126 20.1253C17.0126 16.4911 14.0658 13.5443 10.4316 13.5443ZM1.84974 19.6202C2.10303 17.2316 4.12784 15.3671 6.581 15.3671H10.4316C12.8852 15.3671 14.8785 17.2328 15.1633 19.6202H1.84974ZM8.50631 11.7215C11.1911 11.7215 13.3671 9.54518 13.3671 6.86075C13.3671 4.17632 11.1911 2 8.50631 2C5.82151 2 3.64556 4.17632 3.64556 6.86075C3.64556 9.54518 5.82151 11.7215 8.50631 11.7215ZM8.50631 3.82278C10.1814 3.82278 11.5443 5.18569 11.5443 6.86075C11.5443 8.53581 10.1814 9.89872 8.50631 9.89872C6.83163 9.89872 5.46834 8.53543 5.46834 6.86075C5.46834 5.18569 6.83163 3.82278 8.50631 3.82278ZM21.9455 10.4721L23.7315 8.68619C24.0875 8.33018 24.0875 7.75353 23.7315 7.39733C23.3755 7.04113 22.7988 7.04132 22.4426 7.39733L20.6582 9.21897L18.8722 7.43303C18.5162 7.07702 17.9396 7.07702 17.5834 7.43303C17.2272 7.78904 17.2274 8.36568 17.5834 8.72189L19.3693 10.5078L17.5834 12.2938C17.2274 12.6498 17.2274 13.2264 17.5834 13.5826C17.9393 13.9386 18.516 13.9389 18.8722 13.5826L20.6582 11.7937L22.4441 13.5796C22.8001 13.9355 23.3768 13.9358 23.733 13.5796C24.089 13.2236 24.089 12.6469 23.733 12.2907L21.9455 10.4721Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledUserXmarkRegular);
const UserXmarkRegular = /*#__PURE__*/memo(ForwardRef);
export default UserXmarkRegular;