UNPKG

@cometchat/chat-uikit-react-native

Version:

Ready-to-use Chat UI Components for React Native

20 lines (18 loc) 480 B
import { StyleSheet } from "react-native"; import { BorderStyleInterface, FontStyle } from "../../base"; export interface DatePickerStyleInterface { titleFont?: FontStyle; titleColor?: string; border?: BorderStyleInterface; } export const styles = StyleSheet.create({ dateContainerView: { flexDirection: "row", justifyContent: "space-between", alignItems: "center", paddingHorizontal: 10, height: 38, borderWidth: 1, borderRadius: 5, }, });