react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 534 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgGradienterLine = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M2.05 13h2.012a8.001 8.001 0 0 0 15.876 0h2.013c-.502 5.053-4.766 9-9.951 9s-9.449-3.947-9.95-9m0-2C2.55 5.947 6.814 2 12 2s9.449 3.947 9.95 9h-2.012a8.001 8.001 0 0 0-15.876 0zM12 14a2 2 0 1 1 0-4 2 2 0 0 1 0 4" />
</Svg>
);
export default SvgGradienterLine;