UNPKG

@morphemeicons/react

Version:

Morpheme Icons React

27 lines (25 loc) 1.35 kB
const React = require("react"); function Scales01Icon({ 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: "M2 17v-.15c0-.317 0-.475.024-.63a2 2 0 01.107-.4c.055-.146.134-.283.29-.558L6 9m-4 8a4 4 0 008 0m-8 0v-.2c0-.28 0-.42.054-.527a.5.5 0 01.219-.218C2.38 16 2.52 16 2.8 16h6.4c.28 0 .42 0 .527.055a.5.5 0 01.218.218c.055.107.055.247.055.527v.2M6 9l3.578 6.262c.157.275.236.412.291.558a2 2 0 01.107.4c.024.155.024.313.024.63V17M6 9l12-2m-4 8v-.15c0-.317 0-.475.024-.63.022-.136.057-.27.107-.4.055-.146.134-.283.29-.558L18 7m-4 8a4 4 0 008 0m-8 0v-.2c0-.28 0-.42.055-.527a.5.5 0 01.218-.218C14.38 14 14.52 14 14.8 14h6.4c.28 0 .42 0 .527.055a.5.5 0 01.218.218c.055.107.055.247.055.527v.2m-4-8l3.578 6.262c.157.275.236.412.291.558.05.13.085.264.107.4.024.155.024.313.024.63V15M12 3v5" })); } const ForwardRef = React.forwardRef(Scales01Icon); module.exports = ForwardRef;