react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 532 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgFirebaseFill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M6.757 1.501 4 18.5 9.473 4.816 7.695 1.353a.5.5 0 0 0-.938.148m4.807 2.817L4 18.5l9.84-11.55-1.399-2.623a.5.5 0 0 0-.877-.01m-.624 18.52L4 18.5 17.31 5.665a.5.5 0 0 1 .832.296L20 18.5l-6.94 4.337a2 2 0 0 1-2.12 0" />
</Svg>
);
export default SvgFirebaseFill;