iconic-icons-rn
Version:
Iconic icons for React Native
8 lines (7 loc) • 607 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgBatteryFull(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 8.75a2 2 0 012-2h8.5a2 2 0 012 2v6.5a2 2 0 01-2 2h-8.5a2 2 0 01-2-2v-6.5zM7.75 9.75v4.5M11 9.75v4.5M14.25 9.75v4.5M17.75 10.75H18c.69 0 1.25.56 1.25 1.25v0c0 .69-.56 1.25-1.25 1.25h-.25" })));
}
export default SvgBatteryFull;