UNPKG

@morphemeicons/react

Version:

Morpheme Icons React

27 lines (25 loc) 823 B
const React = require("react"); function MusicNotePlusIcon({ 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: "M14.5 18V5.589c0-.857 0-1.286.18-1.544a1 1 0 01.674-.416c.312-.046.695.145 1.462.529L20.5 6m-6 12a3 3 0 11-6 0 3 3 0 016 0zm-8-8V4m-3 3h6" })); } const ForwardRef = React.forwardRef(MusicNotePlusIcon); module.exports = ForwardRef;