remix-icons-rn
Version:
React native implementation for the popular [RemixIcon](https://remixicon.com) open source library. This library is a fork of (https://github.com/ajayesivan/react-native-remix-icon) since it seemed to be no longer maintained for my use case.
14 lines (13 loc) • 580 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgFirebaseLine = (props) => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
{...props}
>
<Path d="m9.223 8.707-2.312 4.334 1.09-6.715zm1.145-2.148L7.695 1.353a.5.5 0 0 0-.938.148L4 18.5l1.748 1.093 5.192 3.244a2 2 0 0 0 2.12 0L20 18.5 18.142 5.961a.5.5 0 0 0-.841-.287l-2.735 2.637-2.125-3.984a.5.5 0 0 0-.882 0zm2.701 3.196L8.667 14 12 7.75zm-5.837 8.407 9.36-9.025 1.238 8.36L12 21.143z" />
</Svg>
);
export default SvgFirebaseLine;