@elevyg/react-native-ionicons
Version:
Ionicons 5 for React Native
8 lines (6 loc) • 541 B
JavaScript
import * as React from "react";
import Svg, { Circle, Path } from "react-native-svg";
function SvgCodeWorkingOutline(props) {
return <Svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 512 512" {...props}><Circle cx={256} cy={256} r={26} /><Circle cx={346} cy={256} r={26} /><Circle cx={166} cy={256} r={26} /><Path fill="none" stroke={props.fill} strokeLinecap="round" strokeLinejoin="round" strokeWidth={32} d="M160 368L32 256l128-112M352 368l128-112-128-112" /></Svg>;
}
export default SvgCodeWorkingOutline;