import { cn, text } from '@/styles/theme'; import type { EarnBalanceProps } from '../types'; export function EarnBalance({ className, onActionPress, title, subtitle, showAction = false, }: EarnBalanceProps) { return (
{title}
{subtitle}
{showAction && ( )}
); }