@adventera/vectara-ui
Version:
Vectara's design system, codified as a React component library
10 lines (9 loc) • 310 B
TypeScript
declare const SIZE: readonly ["s", "m"];
type Props = {
children: React.ReactNode;
append?: React.ReactNode;
className?: string;
size?: (typeof SIZE)[number];
};
export declare const VuiTabs: ({ children, className, append, size }: Props) => import("react/jsx-runtime").JSX.Element;
export {};