@nomercyicons/react
Version:
28 lines • 952 B
JavaScript
const React = require("react");
function PlayLessonSharpIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
fill: "currentColor",
viewBox: "0 0 24 24",
strokeWidth: 1.5,
stroke: "none",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fill: "none",
d: "M0 0h24v24H0V0z"
}), /*#__PURE__*/React.createElement("path", {
d: "M18 11c.34 0 .67.03 1 .08V2H3v20h9.26A6.995 6.995 0 0118 11zM7 11V4h5v7L9.5 9.5 7 11z"
}), /*#__PURE__*/React.createElement("path", {
d: "M18 13c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm-1.25 7.5v-5l4 2.5-4 2.5z"
}));
}
const ForwardRef = React.forwardRef(PlayLessonSharpIcon);
module.exports = ForwardRef;