@morphemeicons/react
Version:
Morpheme Icons React
27 lines (25 loc) • 962 B
JavaScript
import * as React from "react";
function VariableIcon({
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: "M19.906 21A20.253 20.253 0 0022 12c0-3.233-.754-6.289-2.094-9M4.094 3A20.253 20.253 0 002 12c0 3.233.754 6.289 2.094 9M16.549 8.625h-.09c-.653 0-1.274.287-1.7.786l-5.374 6.303a2.233 2.233 0 01-1.7.786h-.09m1.12-7.875h1.394c.5 0 .939.333 1.076.816l1.774 6.243a1.12 1.12 0 001.077.816h1.394"
}));
}
const ForwardRef = React.forwardRef(VariableIcon);
export default ForwardRef;