UNPKG

@lobehub/ui

Version:

Lobe UI is an open-source UI component library for building AIGC web apps

12 lines (11 loc) 402 B
import { FC, ReactNode } from 'react'; import { FlexboxProps } from 'react-layout-kit'; import { type TabsProps as LobeTabsProps } from "../../Tabs"; export interface TabsProps extends Omit<FlexboxProps, 'children'> { children: ReactNode[]; defaultIndex?: number | string; items: string[]; tabNavProps?: Partial<LobeTabsProps>; } declare const Tabs: FC<TabsProps>; export default Tabs;