import * as React from 'react'; import Svg, { SvgProps, Path } from 'react-native-svg'; function SvgBatteryCharging( props: SvgProps, svgRef?: React.Ref> ) { return ( ); } const ForwardRef = React.forwardRef(SvgBatteryCharging); export default ForwardRef;