react-native-remix-icons
Version:
Remix Icon for React Native
14 lines (13 loc) • 367 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgSignalWifiFill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 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 3" />
</Svg>
);
export default SvgSignalWifiFill;