I'm trying to add tabs in a select option but it is not working. I want select as given in the photo so that i can change tabs and select options of my choice
<Select
borderLeftRadius={'5px'}
borderRightRadius={'none'}
bgColor={'#0C0C0C'}
border={'none'}
color={'white'}
_focusVisible={{
boxShadow: 'none',
}}
>
<option value="option1" className="select">
<Tabs>
<TabList>
<Tab bg={'red'}>One</Tab>
<Tab bg={'blue'} >One</Tab>
</TabList>
<TabPanels>
<TabPanel>
<p>one!</p>
</TabPanel>
<TabPanel>
<p>one!</p>
</TabPanel>
</TabPanels>
</Tabs>
</option>
</Select>
