@vectara/vectara-ui
Version:
Vectara's design system, codified as a React and Sass component library
14 lines (13 loc) • 464 B
TypeScript
type Props = {
labelFor?: string;
label?: string;
labelSize?: "s" | "xs";
labelRightContent?: React.ReactNode;
children: React.ReactElement;
helpText?: React.ReactNode;
errors?: string[];
isRequired?: boolean;
inline?: boolean;
};
export declare const VuiFormGroup: ({ children, labelFor, helpText, label, labelSize, labelRightContent, errors, isRequired, inline }: Props) => import("react/jsx-runtime").JSX.Element;
export {};