UNPKG

1.17 kBJavaScriptView Raw
1const React = require("react");
2
3function ScaleIcon({
4 title,
5 titleId,
6 ...props
7}, svgRef) {
8 return /*#__PURE__*/React.createElement("svg", Object.assign({
9 xmlns: "http://www.w3.org/2000/svg",
10 fill: "none",
11 viewBox: "0 0 24 24",
12 strokeWidth: 1.5,
13 stroke: "currentColor",
14 "aria-hidden": "true",
15 ref: svgRef,
16 "aria-labelledby": titleId
17 }, props), title ? /*#__PURE__*/React.createElement("title", {
18 id: titleId
19 }, title) : null, /*#__PURE__*/React.createElement("path", {
20 strokeLinecap: "round",
21 strokeLinejoin: "round",
22 d: "M12 3v17.25m0 0c-1.472 0-2.882.265-4.185.75M12 20.25c1.472 0 2.882.265 4.185.75M18.75 4.97A48.416 48.416 0 0012 4.5c-2.291 0-4.545.16-6.75.47m13.5 0c1.01.143 2.01.317 3 .52m-3-.52l2.62 10.726c.122.499-.106 1.028-.589 1.202a5.988 5.988 0 01-2.031.352 5.988 5.988 0 01-2.031-.352c-.483-.174-.711-.703-.59-1.202L18.75 4.971zm-16.5.52c.99-.203 1.99-.377 3-.52m0 0l2.62 10.726c.122.499-.106 1.028-.589 1.202a5.989 5.989 0 01-2.031.352 5.989 5.989 0 01-2.031-.352c-.483-.174-.711-.703-.59-1.202L5.25 4.971z"
23 }));
24}
25
26const ForwardRef = React.forwardRef(ScaleIcon);
27module.exports = ForwardRef;
\No newline at end of file