@vectara/vectara-ui
Version:
Vectara's design system, codified as a React and Sass component library
13 lines (12 loc) • 353 B
TypeScript
export type Stat = {
name: string;
value: React.ReactNode;
align?: "start" | "center" | "end" | "baseline" | "stretch";
};
type Props = {
stats: Stat[];
size?: "xs" | "s";
className?: string;
};
export declare const VuiStatList: ({ stats, size, className, ...rest }: Props) => import("react/jsx-runtime").JSX.Element;
export {};