import GetSvg from "@/assets/icons/svg/get.svg"; import { ThemedText } from "@/components/ThemedText"; import { StyleProp, StyleSheet, TouchableOpacity, View, ViewStyle } from "react-native"; interface Props { setUserType: (type: 'normal' | 'premium') => void; style?: StyleProp; } const Normal = (props: Props) => { const { setUserType } = props; return ( Enjoy 100 Bonus Credits Every Month Generate more memory pictures & videos and explore your past. 10GB of Cloud Storage Safely store your cherished photos, videos, and generated memories. { setUserType('premium'); }} activeOpacity={0.8} > Go Premium ); } export default Normal; const styles = StyleSheet.create({ goPro: { backgroundColor: '#E2793F', borderRadius: 24, paddingVertical: 6, display: "flex", alignItems: "center", width: "100%", }, normalInfo: { display: "flex", flexDirection: "column", alignItems: "center", gap: 16 }, normalItem: { display: "flex", flexDirection: "column", alignItems: "flex-start", gap: 16 }, normalItemContent: { display: "flex", flexDirection: "column", } });