UNPKG

styled-icons

Version:

Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components

19 lines (18 loc) 1.22 kB
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var FlightTakeoff = 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("defs", { key: "k0" }, React.createElement("path", { d: "M0 0h24v24H0V0z" })), React.createElement("clipPath", { key: "k1" }, React.createElement("use", { overflow: "visible", xlinkHref: "#a" })), React.createElement("path", { d: "M2.5 19h19v2h-19zm19.57-9.36c-.21-.8-1.04-1.28-1.84-1.06L14.92 10l-6.9-6.43-1.93.51 4.14 7.17-4.97 1.33-1.97-1.54-1.45.39 1.82 3.16.77 1.33 1.6-.43 5.31-1.42 4.35-1.16L21 11.49c.81-.23 1.28-1.05 1.07-1.85z", clipPath: "url(#b)", key: "k2" }), React.createElement("path", { fill: "none", d: "M0 0h24v24H0V0z", clipPath: "url(#b)", key: "k3" }))); }); FlightTakeoff.displayName = 'FlightTakeoff'; export var FlightTakeoffDimensions = { height: 24, width: 24 };