import React from 'react';
import { Badge } from 'components/shared/Badge';
import { SegmentedControlsOption } from 'components/shared/SegmentedControls';
export const SEGMENTED_CONTROLS_OPTIONS: SegmentedControlsOption[] = [
{ label: 'Test 1', value: 'Test 1' },
{
label: 'Test 2',
value: 'Test 2',
leftIcon: (
1
),
},
{
label: 'Test 3',
value: 'Test 3',
rightIcon: (
1
),
},
{
label: 'Test 4',
value: 'Test 4',
leftIcon: (
1
),
rightIcon: (
1
),
},
{
label: 'Test 5',
value: 'Test 5',
disabled: true,
},
];