@awsui/components-react
Version:
AWS UI is a collection of [React](https://reactjs.org/) components that help create intuitive, responsive, and accessible user experiences for web applications. It is developed by Amazon Web Services (AWS). This work is available under the terms of the [A
13 lines (12 loc) • 553 B
TypeScript
import React from 'react';
import { FormFieldProps } from './index';
export interface InternalFormFieldProps extends FormFieldProps {
hideLabel?: boolean;
}
interface FormFieldErrorProps {
id?: string;
children?: React.ReactNode;
}
export declare const FormFieldError: ({ id, children }: FormFieldErrorProps) => JSX.Element;
export default function InternalFormField({ controlId, stretch, label, info, children, secondaryControl, description, constraintText, errorText, hideLabel, ...rest }: InternalFormFieldProps): JSX.Element;
export {};