UNPKG

iconic-icons-rn

Version:

Iconic icons for React Native

10 lines (9 loc) 895 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; function SvgRouter(props) { return (React.createElement(Svg, { width: 24, height: 24, fill: "none", viewBox: "0 0 24 24", color: "white", ...props }, React.createElement(Path, { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M4.75 14.75v2.5a2 2 0 002 2h10.5a2 2 0 002-2v-2.5a2 2 0 00-2-2H6.75a2 2 0 00-2 2z" }), React.createElement(Path, { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", d: "M8.5 16a.5.5 0 11-1 0 .5.5 0 011 0zM11.5 16a.5.5 0 11-1 0 .5.5 0 011 0z" }), React.createElement(Path, { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M12 12.5v-1.75M9.702 8.702a3.25 3.25 0 014.596 0M7.58 6.58a6.25 6.25 0 018.84 0" }))); } export default SvgRouter;