1 | import * as React from "react";
|
2 | function RocketLaunchIcon({
|
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: "M9.315 7.584C12.195 3.883 16.695 1.5 21.75 1.5a.75.75 0 01.75.75c0 5.056-2.383 9.555-6.084 12.436A6.75 6.75 0 019.75 22.5a.75.75 0 01-.75-.75v-4.131A15.838 15.838 0 016.382 15H2.25a.75.75 0 01-.75-.75 6.75 6.75 0 017.815-6.666zM15 6.75a2.25 2.25 0 100 4.5 2.25 2.25 0 000-4.5z",
|
19 | clipRule: "evenodd"
|
20 | }), React.createElement("path", {
|
21 | d: "M5.26 17.242a.75.75 0 10-.897-1.203 5.243 5.243 0 00-2.05 5.022.75.75 0 00.625.627 5.243 5.243 0 005.022-2.051.75.75 0 10-1.202-.897 3.744 3.744 0 01-3.008 1.51c0-1.23.592-2.323 1.51-3.008z"
|
22 | }));
|
23 | }
|
24 | const ForwardRef = React.forwardRef(RocketLaunchIcon);
|
25 | export default ForwardRef; |
\ | No newline at end of file |