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