iconic-icons-rn
Version:
Iconic icons for React Native
8 lines (7 loc) • 553 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgPlug(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: "M18.281 12.031L11.97 5.72a1 1 0 00-1.596.249L6.75 13 11 17.25l7.032-3.623a1 1 0 00.25-1.596zM4.75 19.25L8.5 15.5M13.75 7.25l2.5-2.5M16.75 10.25l2.5-2.5" })));
}
export default SvgPlug;