feat: Invert scroll arrow default in RadioButtonSelect (#4006)

This commit is contained in:
N. Taylor Mullen
2025-07-12 20:58:00 -07:00
committed by GitHub
parent f438df0b2c
commit e49beca60d
2 changed files with 2 additions and 2 deletions
@@ -53,7 +53,7 @@ export function RadioButtonSelect<T>({
onSelect,
onHighlight,
isFocused,
showScrollArrows = true,
showScrollArrows = false,
maxItemsToShow = 10,
}: RadioButtonSelectProps<T>): React.JSX.Element {
const [activeIndex, setActiveIndex] = useState(initialIndex);