react-native-gifted-chat
Version:
The most complete chat UI for React Native
16 lines (14 loc) • 383 B
text/typescript
import {
StyleProp,
ViewStyle,
TextProps,
} from 'react-native'
export interface DayProps {
createdAt: Date | number
dateFormat?: string
dateFormatCalendar?: object
containerStyle?: StyleProp<ViewStyle>
wrapperStyle?: StyleProp<ViewStyle>
/** Props to pass to the Text component (e.g., style, allowFontScaling, numberOfLines) */
textProps?: Partial<TextProps>
}