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