import * as React from 'react' import { Box, Text } from 'ink' type Props = { costUSD: number durationMs: number debug: boolean } export function Cost({ costUSD, durationMs, debug }: Props): React.ReactNode { if (!debug) { return null } const durationInSeconds = (durationMs / 1000).toFixed(1) return ( Cost: ${costUSD.toFixed(4)} ({durationInSeconds}s) ) }