iconic-icons-rn
Version:
Iconic icons for React Native
8 lines (7 loc) • 619 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgBatteryCharging(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: "M8.25 6.75h-1.5a2 2 0 00-2 2v6.5a2 2 0 002 2h.5m7.5-10.5h.5a2 2 0 012 2v6.5a2 2 0 01-2 2h-1.5M17.75 10.75H18c.69 0 1.25.56 1.25 1.25v0c0 .69-.56 1.25-1.25 1.25h-.25M11.75 6.75l-3 5.25h4.5l-3 5.25" })));
}
export default SvgBatteryCharging;