@morphemeicons/react
Version:
Morpheme Icons React
27 lines (25 loc) • 1.31 kB
JavaScript
const React = require("react");
function CheckVerified02Icon({
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.5m2.401-4.501c.206.498.601.893 1.1 1.1l1.744.723a2.033 2.033 0 011.1 2.656l-.722 1.744a2.03 2.03 0 000 1.556l.722 1.744a2.033 2.033 0 01-1.1 2.656L19 17.901A2.033 2.033 0 0017.9 19l-.723 1.745a2.032 2.032 0 01-2.656 1.1l-1.744-.722a2.032 2.032 0 00-1.555 0l-1.745.723a2.033 2.033 0 01-2.654-1.1L6.1 19.001A2.033 2.033 0 005 17.9l-1.744-.723a2.033 2.033 0 01-1.1-2.654l.721-1.744a2.033 2.033 0 000-1.556l-.722-1.746a2.033 2.033 0 011.1-2.657L5 6.098c.498-.206.893-.6 1.1-1.098l.723-1.745a2.033 2.033 0 012.656-1.1l1.744.722a2.033 2.033 0 001.555-.001l1.746-.72a2.032 2.032 0 012.655 1.1l.723 1.746v-.003z"
}));
}
const ForwardRef = React.forwardRef(CheckVerified02Icon);
module.exports = ForwardRef;