@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
12 lines (11 loc) • 390 B
TypeScript
import { FC, ReactNode } from 'react';
import { FlexboxProps } from 'react-layout-kit';
import { type TabsNavProps } from "../../TabsNav";
export interface TabsProps extends Omit<FlexboxProps, 'children'> {
children: ReactNode[];
defaultIndex?: number | string;
items: string[];
tabNavProps?: Partial<TabsNavProps>;
}
declare const Tabs: FC<TabsProps>;
export default Tabs;