UNPKG

iconic-icons-rn

Version:

Iconic icons for React Native

9 lines (8 loc) 793 B
import * as React from "react"; import Svg, { Circle, Path } from "react-native-svg"; function SvgWifiNoConnection(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.213 8.213 0 00-2.534-1.187m-6.891 1.187a8.206 8.206 0 013.058-1.312M4.75 8.25C6.734 6.866 9 5.75 12 5.75c.688 0 1.336.059 1.952.166M19.25 8.25a17.161 17.161 0 00-1.915-1.171M18.25 5.75l-11.5 11.5" }))); } export default SvgWifiNoConnection;