From f741630572824d4d5f25a0849b2cd78a6b874c47 Mon Sep 17 00:00:00 2001 From: Jacob Richman Date: Mon, 23 Jun 2025 23:43:17 +0000 Subject: Polish Theme Dialog (#1356) --- packages/cli/src/ui/components/shared/RadioButtonSelect.tsx | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) (limited to 'packages/cli/src/ui/components/shared/RadioButtonSelect.tsx') diff --git a/packages/cli/src/ui/components/shared/RadioButtonSelect.tsx b/packages/cli/src/ui/components/shared/RadioButtonSelect.tsx index 71077f1c..fab0615c 100644 --- a/packages/cli/src/ui/components/shared/RadioButtonSelect.tsx +++ b/packages/cli/src/ui/components/shared/RadioButtonSelect.tsx @@ -5,7 +5,7 @@ */ import React from 'react'; -import { Text } from 'ink'; +import { Text, Box } from 'ink'; import SelectInput, { type ItemProps as InkSelectItemProps, type IndicatorProps as InkSelectIndicatorProps, @@ -78,12 +78,11 @@ export function RadioButtonSelect({ isSelected = false, }: InkSelectIndicatorProps): React.JSX.Element { return ( - - {isSelected ? '● ' : '○ '} - + + + {isSelected ? '●' : '○'} + + ); } -- cgit v1.2.3