UNPKG

iconic-icons-rn

Version:

Iconic icons for React Native

8 lines (7 loc) 603 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; function SvgCpu(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: "M6.75 8.75a2 2 0 012-2h6.5a2 2 0 012 2v6.5a2 2 0 01-2 2h-6.5a2 2 0 01-2-2v-6.5zM9.75 4.75v1.5M19.25 9.75h-1.5M9.75 17.75v1.5M6.25 9.75h-1.5M14.25 4.75v1.5M19.25 14.25h-1.5M14.25 17.75v1.5M6.25 14.25h-1.5" }))); } export default SvgCpu;