@morphemeicons/react
Version:
Morpheme Icons React
27 lines (25 loc) • 1.15 kB
JavaScript
const React = require("react");
function CheckVerified01Icon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
fill: "none",
viewBox: "0 0 24 24",
strokeWidth: 1.5,
stroke: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M9 12l2 2 4.5-4.5M7.334 3.819a3.832 3.832 0 002.18-.904 3.832 3.832 0 014.972 0c.613.523 1.376.84 2.18.904a3.832 3.832 0 013.515 3.515c.064.804.38 1.567.904 2.18a3.832 3.832 0 010 4.972 3.832 3.832 0 00-.904 2.18 3.832 3.832 0 01-3.515 3.515 3.832 3.832 0 00-2.18.904 3.832 3.832 0 01-4.972 0 3.832 3.832 0 00-2.18-.904 3.832 3.832 0 01-3.515-3.515 3.832 3.832 0 00-.904-2.18 3.832 3.832 0 010-4.972c.523-.613.84-1.376.904-2.18a3.832 3.832 0 013.515-3.515z"
}));
}
const ForwardRef = React.forwardRef(CheckVerified01Icon);
module.exports = ForwardRef;