styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
15 lines (14 loc) • 996 B
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var Rocket = React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg",
};
return (React.createElement(StyledIconBase, __assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }),
React.createElement("circle", { cx: 15.696, cy: 8.272, r: 2, fill: "none", key: "k0" }),
React.createElement("path", { d: "M15.784 15.843s2.855-2.855 3.831-3.829c3.063-3.063 1.531-9.191 1.531-9.191s-6.128-1.532-9.191 1.532c-2.29 2.29-3.816 3.867-3.816 3.867s-3.843-.804-6.141 1.494l12.255 12.255c2.298-2.298 1.531-6.128 1.531-6.128zm-1.502-8.985a1.998 1.998 0 012.828 0 2 2 0 11-2.828 0zM2.969 20.969s3 0 5-2l-3-3c-2 1-2 5-2 5z", key: "k1" })));
});
Rocket.displayName = 'Rocket';
export var RocketDimensions = { height: 24, width: 24 };