UNPKG

@vectara/vectara-ui

Version:

Vectara's design system, codified as a React and Sass component library

13 lines (12 loc) 386 B
import { TabSize } from "./types"; type Style = "enclosed" | "open"; type Props = { children: React.ReactNode; append?: React.ReactNode; className?: string; size?: TabSize; fullWidth?: boolean; style?: Style; }; export declare const VuiTabs: ({ children, className, append, size, fullWidth, style }: Props) => import("react/jsx-runtime").JSX.Element; export {};