@fluentui/react-northstar
Version:
A themable React component library.
15 lines (14 loc) • 739 B
TypeScript
import { InputProps } from '../Input/Input';
import { FormFieldBaseProps } from './utils/formFieldBase';
interface FormInputOwnProps extends Omit<InputProps, 'accessibility'> {
}
declare type SelectedFormFieldCustomProps = Omit<FormFieldBaseProps, 'control' | 'styles' | 'accessibility' | 'design' | 'variables' | 'label'>;
export interface FormInputProps extends SelectedFormFieldCustomProps, FormInputOwnProps {
}
export declare type FormInputStylesProps = never;
export declare const formInputClassName = "ui-form__input";
/**
* An FormInput renders a Input wrapped by FormField.
*/
export declare const FormInput: import("@fluentui/react-bindings").ComponentWithAs<"input", FormInputProps & SelectedFormFieldCustomProps>;
export {};