react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 486 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgSupabaseFill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M3.084 15.25c-1.664 0-2.6-1.912-1.58-3.226L10.21.806C10.794.054 12 .466 12 1.42V8.75h8.916c1.663 0 2.6 1.912 1.58 3.226L13.79 23.194c-.584.752-1.79.34-1.79-.613V15.25z" />
</Svg>
);
export default SvgSupabaseFill;