import React from 'react'; import { ImageBackground, ImageStyle, StyleProp, StyleSheet, ViewStyle } from 'react-native'; import { useTheme } from '../../contexts/themeContext/ThemeContext'; import { VideoPlayIndicator } from '../ui/VideoPlayIndicator'; const styles = StyleSheet.create({ container: { alignItems: 'center', justifyContent: 'center', flex: 1, overflow: 'hidden', }, }); export type VideoThumbnailProps = { imageStyle?: StyleProp; style?: StyleProp; thumb_url?: string; }; export const VideoThumbnail = (props: VideoThumbnailProps) => { const { theme: { messageItemView: { videoThumbnail: { container }, }, }, } = useTheme(); const { imageStyle, style, thumb_url } = props; return ( ); };