@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
23 lines • 1.07 kB
JavaScript
import * as React from "react";
function PasswordCheckIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M20.566 6.037c.288 1.74.838 5.93-.051 8.395-.773 2.143-1.509 3.347-3.18 4.865C15.605 20.867 14.347 22 12.033 22s-3.573-1.133-5.3-2.703c-1.673-1.518-2.39-2.729-3.181-4.865-.957-2.583-.441-6.632-.153-8.36.09-.542.369-1.033.802-1.37C6.746 2.723 8.794 1.995 12.034 2c3.223.006 5.33.643 7.787 2.703a2.2 2.2 0 0 1 .745 1.334M15.785 9.97a.75.75 0 1 0-1.171-.938L11.197 13.3l-1.412-1.767a.75.75 0 0 0-1.172.936l1.998 2.5a.75.75 0 0 0 1.171 0z",
clipRule: "evenodd"
}));
}
const ForwardRef = React.forwardRef(PasswordCheckIcon);
export default ForwardRef;