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