'use client'; type HedgeAlertProps = { isVisible: boolean; parlayLabel: string; counterSelection: string; hedgeStake: number; lockedProfit: number; }; export function HedgeAlert({ isVisible, parlayLabel, counterSelection, hedgeStake, lockedProfit }: HedgeAlertProps) { if (!isVisible) { return null; } return ( ); }