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