import React from 'react'; import {View, StyleSheet, ViewProps} from 'react-native'; import LinearGradient from 'react-native-linear-gradient'; interface MomentProps extends ViewProps {} const Moment: React.FC = ({style}) => { return ( ); }; const styles = StyleSheet.create({ gradient: { width: 80, height: 80, borderRadius: 40, justifyContent: 'center', alignItems: 'center', }, image: { width: 72, height: 72, borderRadius: 37.5, backgroundColor: 'pink', }, }); export default Moment;