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