import React, { forwardRef } from 'react' import PropTypes from 'prop-types' const CalendarDate = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( ) } ) CalendarDate.propTypes = { color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]) } CalendarDate.displayName = 'CalendarDate' export default CalendarDate