@morphemeicons/react
Version:
Morpheme Icons React
27 lines (25 loc) • 799 B
JavaScript
import * as React from "react";
function MusicNote02Icon({
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: "M12 18V5.589c0-.857 0-1.286.18-1.544a1 1 0 01.674-.416c.312-.046.695.145 1.462.529L18 6m-6 12a3 3 0 11-6 0 3 3 0 016 0z"
}));
}
const ForwardRef = React.forwardRef(MusicNote02Icon);
export default ForwardRef;