import GetSvg from "@/assets/icons/svg/get.svg"; import { ThemedText } from "@/components/ThemedText"; import { useTranslation } from "react-i18next"; import { StyleProp, StyleSheet, View, ViewStyle } from "react-native"; const ProRights = (props: { style?: StyleProp }) => { const { style } = props; const { t } = useTranslation(); return ( {t('rights.proTitle', { ns: 'personal' })} {t('rights.noAd', { ns: 'personal' })} {t('rights.noAdText', { ns: 'personal' })} {t('rights.bonus', { ns: 'personal' })} {t('rights.bonusText', { ns: 'personal' })} {t('rights.storage', { ns: 'personal' })} {t('rights.storageText', { ns: 'personal' })} ); } const styles = StyleSheet.create({ proRights: { padding: 16, gap: 8 }, itemContent: { display: "flex", flexDirection: "column", } }) export default ProRights;