@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.57 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 StyledUserCheckSolid = ({
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.3013 13.4H6.49875C2.91038 13.4 0 16.31 0 19.8988C0 20.6187 0.582 21.2 1.29975 21.2H15.4987C16.2188 21.2 16.8 20.6187 16.8 19.8988C16.8 16.31 13.89 13.4 10.3013 13.4ZM8.4 11.6C11.0513 11.6 13.2 9.45088 13.2 6.8C13.2 4.14913 11.0513 2 8.4 2C5.74875 2 3.6 4.14913 3.6 6.8C3.6 9.45088 5.74875 11.6 8.4 11.6ZM23.7113 7.04C23.3474 6.7025 22.7771 6.72301 22.4393 7.08748L19.1749 10.6031L17.7353 9.16348C17.3837 8.81191 16.8143 8.81191 16.4625 9.16348C16.1108 9.51504 16.1109 10.0845 16.4625 10.4362L18.5625 12.5362C18.7313 12.7063 18.96 12.8 19.2 12.8H19.2164C19.4613 12.7953 19.6934 12.6916 19.8599 12.5123L23.7599 8.3123C24.0975 7.9475 24.075 7.3775 23.7113 7.04Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledUserCheckSolid);
const UserCheckSolid = /*#__PURE__*/memo(ForwardRef);
export default UserCheckSolid;