@morphemeicons/react
Version:
Morpheme Icons React
27 lines (25 loc) • 953 B
JavaScript
import * as React from "react";
function Speedometer01Icon({
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: "M12 2v2.5M12 2C6.477 2 2 6.477 2 12M12 2c5.523 0 10 4.477 10 10m-10 7.5V22m0 0c5.523 0 10-4.477 10-10M12 22C6.477 22 2 17.523 2 12m2.5 0H2m20 0h-2.5m-.422 7.078l-1.773-1.773M4.922 19.078l1.775-1.775M4.922 5l1.736 1.736M19.078 5L13.5 10.5M14 12a2 2 0 11-4 0 2 2 0 014 0z"
}));
}
const ForwardRef = React.forwardRef(Speedometer01Icon);
export default ForwardRef;