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