import React from 'react'; import { TouchableOpacity, StyleSheet, ViewStyle } from 'react-native'; import { LinearGradient } from 'expo-linear-gradient'; import Svg, { Path } from 'react-native-svg'; import { OnboardingColors } from '@/constants/OnboardingTheme'; interface NextButtonProps { onPress: () => void; disabled?: boolean; style?: ViewStyle; } export function NextButton({ onPress, disabled, style }: NextButtonProps) { return ( ); } const styles = StyleSheet.create({ container: { shadowColor: OnboardingColors.buttonEnd, shadowOffset: { width: 0, height: 4 }, shadowOpacity: 0.3, shadowRadius: 8, elevation: 5, }, gradient: { width: 64, height: 64, borderRadius: 32, justifyContent: 'center', alignItems: 'center', }, disabled: { opacity: 0.5, }, });