import React, { ComponentProps } from 'react'; import { StyleSheet, View } from 'react-native'; import { useTheme } from 'react-native-paper'; import FontAwesome5 from 'react-native-vector-icons/FontAwesome5'; import { rgbToRgba } from '../../utilities'; const memeFailStyles = StyleSheet.create({ view: { alignItems: 'center', justifyContent: 'center', }, }); const MemeFail = ({ iconSize, ...props }: { iconSize?: number; } & ComponentProps) => { const { colors } = useTheme(); return ( ); }; export default MemeFail;