react-native-remix-icon
Version:
Remix Icon for React Native
14 lines (11 loc) • 439 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgFireFill(props) {
return (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path fill="none" d="M0 0h24v24H0z" />
<Path d="M12 23a7.5 7.5 0 01-5.138-12.963C8.204 8.774 11.5 6.5 11 1.5c6 4 9 8 3 14 1 0 2.5 0 5-2.47.27.773.5 1.604.5 2.47A7.5 7.5 0 0112 23z" />
</Svg>
);
}
export default SvgFireFill;