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