@vectara/vectara-ui
Version:
Vectara's design system, codified as a React and Sass component library
14 lines (13 loc) • 432 B
TypeScript
import { TabSize } from "./types";
type TabStyle = "enclosed" | "open";
type Props = {
children: React.ReactNode;
append?: React.ReactNode;
className?: string;
size?: TabSize;
fullWidth?: boolean;
tabStyle?: TabStyle;
vertical?: boolean;
};
export declare const VuiTabs: ({ children, className, append, size, fullWidth, tabStyle, vertical }: Props) => import("react/jsx-runtime").JSX.Element;
export {};