fix(cli): use ↑↓ arrows for token usage in footer
This commit is contained in:
@@ -59,9 +59,9 @@ export function BottomBar({
|
|||||||
<Box>
|
<Box>
|
||||||
{hasTokens ? (
|
{hasTokens ? (
|
||||||
<>
|
<>
|
||||||
<Text dimColor>^{formatTokens(tokenUsage.input)}</Text>
|
<Text dimColor>↑{formatTokens(tokenUsage.input)}</Text>
|
||||||
<Text dimColor>{' '}</Text>
|
<Text dimColor>{' '}</Text>
|
||||||
<Text dimColor>v{formatTokens(tokenUsage.output)}</Text>
|
<Text dimColor>↓{formatTokens(tokenUsage.output)}</Text>
|
||||||
{tokenUsage.cacheRead > 0 && (
|
{tokenUsage.cacheRead > 0 && (
|
||||||
<>
|
<>
|
||||||
<Text dimColor>{' '}</Text>
|
<Text dimColor>{' '}</Text>
|
||||||
@@ -90,7 +90,7 @@ export function BottomBar({
|
|||||||
)}
|
)}
|
||||||
</>
|
</>
|
||||||
) : (
|
) : (
|
||||||
<Text dimColor>^0 v0 $0.000</Text>
|
<Text dimColor>↑0 ↓0 $0.000</Text>
|
||||||
)}
|
)}
|
||||||
</Box>
|
</Box>
|
||||||
<Box>
|
<Box>
|
||||||
|
|||||||
Reference in New Issue
Block a user