@fluentui/react-northstar
Version:
A themable React component library.
15 lines (14 loc) • 774 B
TypeScript
import { TextAreaProps } from '../TextArea/TextArea';
import { FormFieldBaseProps } from './utils/formFieldBase';
interface FormTextAreaOwnProps extends Omit<TextAreaProps, 'accessibility'> {
}
declare type SelectedFormFieldCustomProps = Omit<FormFieldBaseProps, 'control' | 'styles' | 'accessibility' | 'design' | 'variables'>;
export interface FormTextAreaProps extends SelectedFormFieldCustomProps, FormTextAreaOwnProps {
}
export declare type FormTextAreaStylesProps = never;
export declare const formTextAreaClassName = "ui-form__textarea";
/**
* An FormTextArea renders a TextArea wrapped by FormField.
*/
export declare const FormTextArea: import("@fluentui/react-bindings").ComponentWithAs<"textarea", FormTextAreaProps & SelectedFormFieldCustomProps>;
export {};