UNPKG

@astraicons/react

Version:

A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.

22 lines 1.18 kB
const React = require("react"); const { forwardRef } = require("react"); const PasswordCheckIcon = ({ title, titleId, ...props }, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor", "aria-hidden": "true", ref: ref, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { fillRule: "evenodd", d: "M12.031 2.25c-1.498-.003-2.763.167-3.962.588-1.2.422-2.292 1.08-3.465 2.005a2.7 2.7 0 0 0-.987 1.694 28 28 0 0 0-.358 3.575c-.042 1.427.053 3.036.528 4.335.736 2.01 1.432 3.209 3.024 4.673l.045.04c1.5 1.381 2.815 2.59 5.174 2.59s3.674-1.209 5.175-2.59l.044-.04c1.59-1.461 2.305-2.653 3.026-4.68.446-1.25.515-2.869.458-4.307a31 31 0 0 0-.38-3.625 2.73 2.73 0 0 0-.915-1.647c-1.147-.973-2.242-1.635-3.449-2.048-1.203-.411-2.476-.56-3.958-.563m3.754 7.719a.75.75 0 1 0-1.171-.938L11.197 13.3l-1.412-1.767a.75.75 0 1 0-1.172.936l1.998 2.5a.75.75 0 0 0 1.171 0z", clipRule: "evenodd" })); const ForwardRef = forwardRef(PasswordCheckIcon); module.exports = ForwardRef;