react-native-ethiopian-calendar
Version:
A react native calendar component which is mainly intended for applications which require Ethiopian calendar.
29 lines • 721 B
JavaScript
import { StyleSheet } from 'react-native';
import * as defaultStyle from '../../styles';
export const makeStyle = function () {
let theme = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
const mergedStyles = {
...defaultStyle,
...theme
};
return StyleSheet.create({
container: {
backgroundColor: mergedStyles.calendarBackground,
paddingHorizontal: 4,
shadowColor: '#000',
shadowOffset: {
width: 0,
height: 2
},
shadowOpacity: 0.25,
shadowRadius: 3.84,
elevation: 5
},
daysWrapper: {
flexDirection: 'row',
paddingTop: 5,
flexWrap: 'wrap'
}
});
};
//# sourceMappingURL=styles.js.map