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 SvgRocket2Fill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M8.498 20.005h7.004A6.52 6.52 0 0 1 12 23.507a6.52 6.52 0 0 1-3.502-3.502M18 14.81l2 2.268v1.927H4v-1.927l2-2.268V9.005c0-3.483 2.504-6.447 6-7.545 3.496 1.098 6 4.062 6 7.545zm-6-3.805a2 2 0 1 0 0-4 2 2 0 0 0 0 4" />
</Svg>
);
export default SvgRocket2Fill;