mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-02-02 19:42:34 -06:00
25 lines
1.3 KiB
JavaScript
25 lines
1.3 KiB
JavaScript
|
const React = require("react");
|
||
|
|
||
|
function ScaleIcon({
|
||
|
title,
|
||
|
titleId,
|
||
|
...props
|
||
|
}, svgRef) {
|
||
|
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
||
|
xmlns: "http://www.w3.org/2000/svg",
|
||
|
viewBox: "0 0 20 20",
|
||
|
fill: "currentColor",
|
||
|
"aria-hidden": "true",
|
||
|
ref: svgRef,
|
||
|
"aria-labelledby": titleId
|
||
|
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
||
|
id: titleId
|
||
|
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
||
|
fillRule: "evenodd",
|
||
|
d: "M10 2a.75.75 0 01.75.75v.258a33.186 33.186 0 016.668.83.75.75 0 01-.336 1.461 31.28 31.28 0 00-1.103-.232l1.702 7.545a.75.75 0 01-.387.832A4.981 4.981 0 0115 14c-.825 0-1.606-.2-2.294-.556a.75.75 0 01-.387-.832l1.77-7.849a31.743 31.743 0 00-3.339-.254v11.505a20.01 20.01 0 013.78.501.75.75 0 11-.339 1.462A18.558 18.558 0 0010 17.5c-1.442 0-2.845.165-4.191.477a.75.75 0 01-.338-1.462 20.01 20.01 0 013.779-.501V4.509c-1.129.026-2.243.112-3.34.254l1.771 7.85a.75.75 0 01-.387.83A4.98 4.98 0 015 14a4.98 4.98 0 01-2.294-.556.75.75 0 01-.387-.832L4.02 5.067c-.37.07-.738.148-1.103.232a.75.75 0 01-.336-1.462 32.845 32.845 0 016.668-.829V2.75A.75.75 0 0110 2zM5 7.543L3.92 12.33a3.499 3.499 0 002.16 0L5 7.543zm10 0l-1.08 4.787a3.498 3.498 0 002.16 0L15 7.543z",
|
||
|
clipRule: "evenodd"
|
||
|
}));
|
||
|
}
|
||
|
|
||
|
const ForwardRef = React.forwardRef(ScaleIcon);
|
||
|
module.exports = ForwardRef;
|