@morphemeicons/react
Version:
Morpheme Icons React
27 lines (25 loc) • 844 B
JavaScript
const React = require("react");
function Headphones01Icon({
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: "M21 18v-6a9 9 0 10-18 0v6m2.5 3A2.5 2.5 0 013 18.5v-2a2.5 2.5 0 015 0v2A2.5 2.5 0 015.5 21zm13 0a2.5 2.5 0 01-2.5-2.5v-2a2.5 2.5 0 015 0v2a2.5 2.5 0 01-2.5 2.5z"
}));
}
const ForwardRef = React.forwardRef(Headphones01Icon);
module.exports = ForwardRef;