@zh5/react-native-remix-icon
Version:
Remix Icon for React Native
9 lines (8 loc) • 508 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgBlazeLine = props => (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path d="M19 9c.667 1.06 1 2.394 1 4 0 3-3.5 4-5 9-.667-.575-1-1.408-1-2.5 0-3.482 5-5.29 5-10.5Zm-4.5-4a8.309 8.309 0 0 1 1 4c0 5-6 6-4 13C9.833 20.84 9 19.173 9 17c0-3.325 5.5-6 5.5-12ZM10 1c.667 1.333 1 2.833 1 4.5 0 6-9 7.5-3 16.5-2.5-.5-4.5-3-4.5-6C3.5 9.5 10 8.5 10 1Z" />
</Svg>
);
export default SvgBlazeLine;