import React from 'react'; import PropTypes from 'prop-types'; const RichText = props => ( ); RichText.defaultProps = { fill: '#fff', }; RichText.propTypes = { fill: PropTypes.string, }; export default RichText;