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