react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 531 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgSignalWifi2Fill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M12 3c4.285 0 8.22 1.497 11.31 3.996L12 21 .69 6.997A17.93 17.93 0 0 1 12 3m0 2c-3.027 0-5.922.842-8.42 2.392l3.179 3.935A10.95 10.95 0 0 1 12 10c1.897 0 3.683.48 5.241 1.327L20.42 7.39A15.9 15.9 0 0 0 12 5" />
</Svg>
);
export default SvgSignalWifi2Fill;