@metamask/design-system-react
Version:
Design system react ui components
7 lines • 1.11 kB
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const SvgRocket = (props, ref) => React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor", ref: ref, ...props },
React.createElement("path", { d: "m6 19.054 1.975-.8q-.25-.723-.462-1.473c-.213-.75-.255-.998-.338-1.498l-1.175.8zm4-1.049h4q.45-.999.725-2.434.275-1.437.275-2.934 0-2.472-.825-4.682T12 4.547q-1.35 1.199-2.175 3.408A13.3 13.3 0 0 0 9 12.637q0 1.497.275 2.933.275 1.437.725 2.435m2-4.994q-.825 0-1.412-.587-.588-.586-.588-1.41c0-.824.196-1.02.588-1.411q.587-.587 1.412-.587c.825 0 1.02.196 1.413.587q.587.587.587 1.41c0 .824-.196 1.02-.587 1.411a1.93 1.93 0 0 1-1.413.587m6 6.043v-2.972l-1.175-.799q-.125.75-.337 1.499c-.212.749-.296.99-.463 1.473zM12 2q2.475 1.798 3.738 4.57C17 9.34 17 10.563 17 13.01l2.1 1.398q.425.275.663.725c.238.45.237.615.237.948V22l-4.975-1.997h-6.05L4 22v-5.918a2 2 0 0 1 .9-1.673L7 13.012q0-3.67 1.263-6.442C9.526 3.797 10.35 3.2 12 2" }));
const ForwardRef = forwardRef(SvgRocket);
export default ForwardRef;
//# sourceMappingURL=Rocket.mjs.map