Skip to content

Commit 1b085df

Browse files
committed
feat: Improved coloring for progress display
1 parent 2758c84 commit 1b085df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ui/components/progress/spinner.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ function Spinner({ type = 'dots', label }: Props) {
3636
};
3737
}, [spinner]);
3838

39-
return <Text>{spinner.frames[frame]} {label}</Text>;
39+
return <Text><Text color='blue'>{spinner.frames[frame]}</Text> {label}</Text>;
4040
}
4141

4242
export default Spinner;

0 commit comments

Comments
 (0)