UNPKG

1.21 kBJavaScriptView Raw
1const React = require("react");
2
3function ChatBubbleLeftRightIcon({
4 title,
5 titleId,
6 ...props
7}, svgRef) {
8 return /*#__PURE__*/React.createElement("svg", Object.assign({
9 xmlns: "http://www.w3.org/2000/svg",
10 fill: "none",
11 viewBox: "0 0 24 24",
12 strokeWidth: 1.5,
13 stroke: "currentColor",
14 "aria-hidden": "true",
15 ref: svgRef,
16 "aria-labelledby": titleId
17 }, props), title ? /*#__PURE__*/React.createElement("title", {
18 id: titleId
19 }, title) : null, /*#__PURE__*/React.createElement("path", {
20 strokeLinecap: "round",
21 strokeLinejoin: "round",
22 d: "M20.25 8.511c.884.284 1.5 1.128 1.5 2.097v4.286c0 1.136-.847 2.1-1.98 2.193-.34.027-.68.052-1.02.072v3.091l-3-3c-1.354 0-2.694-.055-4.02-.163a2.115 2.115 0 01-.825-.242m9.345-8.334a2.126 2.126 0 00-.476-.095 48.64 48.64 0 00-8.048 0c-1.131.094-1.976 1.057-1.976 2.192v4.286c0 .837.46 1.58 1.155 1.951m9.345-8.334V6.637c0-1.621-1.152-3.026-2.76-3.235A48.455 48.455 0 0011.25 3c-2.115 0-4.198.137-6.24.402-1.608.209-2.76 1.614-2.76 3.235v6.226c0 1.621 1.152 3.026 2.76 3.235.577.075 1.157.14 1.74.194V21l4.155-4.155"
23 }));
24}
25
26const ForwardRef = React.forwardRef(ChatBubbleLeftRightIcon);
27module.exports = ForwardRef;
\No newline at end of file