import React from 'react'; import { Avatar, Card, List, useTheme } from 'react-native-paper'; import i18n from 'i18n-js'; import { StyleSheet } from 'react-native'; type Props = { valid?: boolean; }; const styles = StyleSheet.create({ card: { margin: 10, }, icon: { backgroundColor: 'transparent', }, }); export default function ProfileMembershipCard(props: Props) { const theme = useTheme(); const state = props.valid === true; return ( ( )} /> ( )} /> ); }