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