styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
17 lines (16 loc) • 1.15 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
var React = tslib_1.__importStar(require("react"));
var StyledIconBase_1 = require("../../StyledIconBase");
exports.Rocket = React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg",
};
return (React.createElement(StyledIconBase_1.StyledIconBase, tslib_1.__assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }),
React.createElement("path", { fill: "none", d: "M0 0h24v24H0z", key: "k0" }),
React.createElement("path", { d: "M5.33 15.929A13.064 13.064 0 015 13c0-5.088 2.903-9.436 7-11.182C16.097 3.564 19 7.912 19 13c0 1.01-.114 1.991-.33 2.929l2.02 1.796a.5.5 0 01.097.63l-2.458 4.096a.5.5 0 01-.782.096l-2.254-2.254a1 1 0 00-.707-.293H9.414a1 1 0 00-.707.293l-2.254 2.254a.5.5 0 01-.782-.096l-2.458-4.095a.5.5 0 01.097-.631l2.02-1.796zM12 13a2 2 0 100-4 2 2 0 000 4z", key: "k1" })));
});
exports.Rocket.displayName = 'Rocket';
exports.RocketDimensions = { height: 24, width: 24 };
;