UNPKG

@morphemeicons/react

Version:

Morpheme Icons React

27 lines (25 loc) 1.5 kB
const React = require("react"); function Wallet05Icon({ 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 10H5m14 0l1.864 3.107c.418.696.627 1.044.735 1.42a3 3 0 01.113 1.023c-.025.389-.153.774-.41 1.544l-.208.624c-.393 1.18-.59 1.77-.955 2.206a3 3 0 01-1.203.868c-.53.208-1.152.208-2.396.208H7.46c-1.244 0-1.867 0-2.396-.208a3 3 0 01-1.203-.868c-.365-.436-.562-1.026-.955-2.206l-.208-.624c-.257-.77-.385-1.155-.41-1.545a3 3 0 01.113-1.023c.108-.375.317-.723.735-1.42L5 10m14 0l.417-1.46c.198-.693.297-1.039.22-1.313a1 1 0 00-.436-.577c-.242-.15-.602-.15-1.322-.15H6.12c-.72 0-1.08 0-1.322.15a1 1 0 00-.435.577c-.078.274.02.62.219 1.313L5 10m7-3.5H8.464c-.52 0-1.02-.21-1.389-.586A2.019 2.019 0 016.5 4.5c0-.53.207-1.04.575-1.414a1.947 1.947 0 011.39-.586c2.75 0 3.535 4 3.535 4zm0 0h3.536c.52 0 1.02-.21 1.389-.586.368-.375.575-.884.575-1.414 0-.53-.207-1.04-.575-1.414a1.946 1.946 0 00-1.39-.586c-2.75 0-3.535 4-3.535 4z" })); } const ForwardRef = React.forwardRef(Wallet05Icon); module.exports = ForwardRef;