import GetSvg from "@/assets/icons/svg/get.svg"; import { ThemedText } from "@/components/ThemedText"; import { StyleProp, StyleSheet, View, ViewStyle } from "react-native"; const ProRights = (props: { style?: StyleProp }) => { const { style } = props; return ( Enjoy MemoWake Pro Benefits no advertisement There are no advertisements, so you can use the product with peace of mind. Enjoy 1000 Bonus Credits Every Month Generate more memory pictures & videos and explore your past. 100GB of Cloud Storage Safely store your cherished photos, videos, and generated memories. ); } const styles = StyleSheet.create({ proRights: { padding: 16, gap: 8 }, itemContent: { display: "flex", flexDirection: "column", } }) export default ProRights;