react-native-calendar-picker
Version:
Calendar Picker Component for React Native
17 lines (14 loc) • 334 B
JavaScript
import React from 'react';
import { View } from 'react-native';
import PropTypes from 'prop-types';
export default function EmptyDay(props) {
const { styles } = props;
return(
<View style={styles.dayWrapper}>
<View style={styles.dayButton} />
</View>
);
}
EmptyDay.propTypes = {
styles: PropTypes.shape({})
};