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