@adventera/vectara-ui
Version:
Vectara's design system, codified as a React component library
10 lines (9 loc) • 349 B
TypeScript
import { ReactNode } from "react";
declare const GROW: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
type Props = {
children?: ReactNode;
grow?: (typeof GROW)[number] | boolean;
className?: string;
};
export declare const VuiFlexItem: ({ children, grow, className, ...rest }: Props) => import("react/jsx-runtime").JSX.Element;
export {};