@scienceicons/react
Version:
Open science icons for React
21 lines • 766 B
JavaScript
import * as React from "react";
function DiscourseIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "M12.1 2.2c-5.4 0-10 4.3-10 9.7v10h10c5.4 0 9.7-4.5 9.7-9.8s-4.4-9.9-9.7-9.9zM12 17.7c-.8 0-1.6-.2-2.4-.6L6 18l1-3.2c-.3-.9-.6-1.9-.6-2.8 0-3.1 2.5-5.7 5.7-5.7s5.7 2.5 5.7 5.7-2.7 5.7-5.8 5.7z"
}));
}
const ForwardRef = React.forwardRef(DiscourseIcon);
export default ForwardRef;