react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 557 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgSpaceShipFill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M2.88 18.049a35.9 35.9 0 0 1 8.531-16.32.8.8 0 0 1 1.178 0q.25.27.412.456a35.9 35.9 0 0 1 8.119 15.864c-2.141.451-4.34.747-6.584.875L12.447 23.1a.5.5 0 0 1-.894 0l-2.089-4.177a44 44 0 0 1-6.584-.875M12 14.995a3 3 0 1 0 0-6 3 3 0 0 0 0 6" />
</Svg>
);
export default SvgSpaceShipFill;