import React from 'react'; import { Pressable, Text, View } from 'react-native'; import { ArrowUpRight, Gem } from 'lucide-react-native'; import { outOfCreditsWidgetStyles as s } from './outOfCreditsWidgetStyles'; import { themedColor } from '../../theme'; import { palette } from '../../tokens'; export function OutOfCreditsWidget({ onViewPlans }: { onViewPlans?: () => void }) { return ( 0 credits remaining You're out of credits Upgrade to a Premium plan to unlock instant credits and keep building with your agent. {onViewPlans ? ( [s.button, pressed && s.buttonPressed]} > View all plans ) : null} ); }