UNPKG

react-native-time-date-picker

Version:

Easy to use time and date picker with lots of options for React Native.

38 lines 927 B
import { StyleSheet } from "react-native"; export const styles = (theme) => StyleSheet.create({ container: { width: "100%", height: "100%", flexWrap: "wrap", left: 5, }, dayItem: { flex: 1, margin: 3, borderColor: theme.borderColor, alignItems: "center", justifyContent: "center", }, dayTodayItem: { borderWidth: 2, borderColor: theme.borderColor, }, dayItemSelected: { backgroundColor: theme.mainColor, }, dayText: { fontFamily: theme.defaultFont, fontSize: theme.textFontSize, color: theme.textDefaultColor, textAlign: "center", width: "100%", }, dayTextSelected: { color: theme.selectedTextColor, fontFamily: theme.headerFont, }, dayTextDisabled: { opacity: 0.2, }, }); //# sourceMappingURL=Days.style.js.map