Documentation
Tabs

Tabs

Tab 1 Content

Example

import { Tabs } from '@i4o/catalystui'
 
export default () => {
	const tabs = [
		{
			id: '1',
			title: 'Tab 1',
			content: <p className='p-4'>Tab 1 Content</p>,
		},
		{
			id: '2',
			title: 'Tab 2',
			content: <p className='p-4'>Tab 2 Content</p>,
		},
		{
			id: '3',
			title: 'Tab 3',
			content: <p className='p-4'>Tab 3 Content</p>,
		},
	]
 
	return (
		<Tabs defaultValue='1'>
			<div className='flex flex-col gap-2'>
				<TabsList tabs={tabs} />
				<div className='bg-white dark:bg-gray-800 rounded-md'>
					<TabsContent tabs={tabs} />
				</div>
			</div>
		</Tabs>
	)
}

Props

NameTypeDefaultDescription
defaultValuestring''Id of the tab to be selected by default
tabsArray<{ id: string, title: string | ReactNode, content: string | ReactNode }>[]Array of tabs to render
typerow | columnrowLayout of the tabs list and content