<ButtonsSlider
options={['Option A', 'Option B', 'Option C']}
initialIndex={0}
onSelect={(i) => console.log('selected', i)}
orientation="vertical"
sliderContainerStyle={{ backgroundColor: '#18181b', borderRadius: 12, padding: 4 }}
sliderStyle={{ backgroundColor: '#27272a' }}
sliderItemButtonStyle={({ isSelected }) => ({
backgroundColor: isSelected ? '#6366f1' : 'transparent',
})}
sliderItemTextStyle={({ isSelected }) => ({
color: isSelected ? '#fff' : '#71717a',
fontWeight: isSelected ? '600' : '400',
})}
style={{ width: 140, height: 132 }}
/>