react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 530 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgFlightTakeoffLine = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M21.949 10.112a1.5 1.5 0 0 1-1.06 1.837L5.221 16.147a1 1 0 0 1-1.133-.48l-2.623-4.725 1.449-.389 2.468 2.445 5.095-1.365-4.51-7.074 1.931-.518 6.952 6.42 5.26-1.41a1.5 1.5 0 0 1 1.838 1.06M4 19h16v2H4z" />
</Svg>
);
export default SvgFlightTakeoffLine;