react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 776 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgDisqusLine = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M11.997 2c5.523 0 10 4.477 10 10s-4.477 10-10 10a9.96 9.96 0 0 1-6.249-2.192l-4.718.59 1.72-4.586A10 10 0 0 1 1.996 12c0-5.523 4.477-10 10-10m0 2a8 8 0 0 0-7.262 11.362l.177.38-.848 2.26 2.315-.289.338.297a7.97 7.97 0 0 0 5.28 1.99 8 8 0 1 0 0-16m-3.95 3h3.79c3.42 0 5.44 1.956 5.54 4.729l.004.215v.027c0 2.814-1.963 4.922-5.338 5.025l-.262.004H8.047zh3.79zm3.832 2.458H10.77v5.085h1.109c1.565 0 2.624-.845 2.703-2.345l.005-.183v-.028c0-1.6-1.08-2.53-2.708-2.53" />
</Svg>
);
export default SvgDisqusLine;