@morphemeicons/react
Version:
Morpheme Icons React
27 lines (25 loc) • 860 B
JavaScript
import * as React from "react";
function Signal02Icon({
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: "M16.243 5.757a6 6 0 010 8.486m-8.485 0a6 6 0 010-8.486m-2.83 11.314c-3.904-3.905-3.904-10.237 0-14.142m14.143 0c3.906 3.905 3.906 10.237 0 14.142M12.002 12a2 2 0 100-4 2 2 0 000 4zm0 0v9"
}));
}
const ForwardRef = React.forwardRef(Signal02Icon);
export default ForwardRef;