iconic-icons-rn
Version:
Iconic icons for React Native
9 lines (8 loc) • 684 B
JavaScript
import * as React from "react";
import Svg, { Circle, Path } from "react-native-svg";
function SvgWifi(props) {
return (React.createElement(Svg, { width: 24, height: 24, fill: "none", viewBox: "0 0 24 24", color: "white", ...props },
React.createElement(Circle, { cx: 12, cy: 18, r: 1, fill: "currentColor" }),
React.createElement(Path, { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M9.5 14.563a4.231 4.231 0 012.5-.813c.934 0 1.798.302 2.5.813M16.713 11.228A8.212 8.212 0 0012 9.75a8.212 8.212 0 00-4.712 1.478M5 7.946a12.194 12.194 0 017-2.196c2.603 0 5.016.812 7 2.196" })));
}
export default SvgWifi;