@morphemeicons/react
Version:
Morpheme Icons React
27 lines (25 loc) • 865 B
JavaScript
const React = require("react");
function Headphones02Icon({
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: "M22 17v-4c0-5.523-4.477-10-10-10S2 7.477 2 13v4m5.5 4A2.5 2.5 0 015 18.5v-3a2.5 2.5 0 015 0v3A2.5 2.5 0 017.5 21zm9 0a2.5 2.5 0 01-2.5-2.5v-3a2.5 2.5 0 015 0v3a2.5 2.5 0 01-2.5 2.5z"
}));
}
const ForwardRef = React.forwardRef(Headphones02Icon);
module.exports = ForwardRef;