1 | import * as React from "react";
|
2 | function ChatBubbleOvalLeftIcon({
|
3 | title,
|
4 | titleId,
|
5 | ...props
|
6 | }, svgRef) {
|
7 | return React.createElement("svg", Object.assign({
|
8 | xmlns: "http://www.w3.org/2000/svg",
|
9 | viewBox: "0 0 24 24",
|
10 | fill: "currentColor",
|
11 | "aria-hidden": "true",
|
12 | ref: svgRef,
|
13 | "aria-labelledby": titleId
|
14 | }, props), title ? React.createElement("title", {
|
15 | id: titleId
|
16 | }, title) : null, React.createElement("path", {
|
17 | fillRule: "evenodd",
|
18 | d: "M5.337 21.718a6.707 6.707 0 01-.533-.074.75.75 0 01-.44-1.223 3.73 3.73 0 00.814-1.686c.023-.115-.022-.317-.254-.543C3.274 16.587 2.25 14.41 2.25 12c0-5.03 4.428-9 9.75-9s9.75 3.97 9.75 9c0 5.03-4.428 9-9.75 9-.833 0-1.643-.097-2.417-.279a6.721 6.721 0 01-4.246.997z",
|
19 | clipRule: "evenodd"
|
20 | }));
|
21 | }
|
22 | const ForwardRef = React.forwardRef(ChatBubbleOvalLeftIcon);
|
23 | export default ForwardRef; |
\ | No newline at end of file |