import React, { forwardRef } from 'react' import PropTypes from 'prop-types' const BatteryFull = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( ) } ) BatteryFull.propTypes = { color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]) } BatteryFull.displayName = 'BatteryFull' export default BatteryFull