@conduction/components
Version:
React (Gatsby) components used within the Conduction Skeleton Application (and its implementations)
23 lines (22 loc) • 912 B
TypeScript
import * as React from "react";
import { IReactHookFormProps } from "./types";
export interface IInputProps {
name: string;
ariaLabel: string;
disabled?: boolean;
defaultValue?: string;
icon?: JSX.Element;
placeholder?: string;
hideErrorMessage?: boolean;
}
export declare const InputPassword: React.FC<IInputProps & IReactHookFormProps>;
export declare const InputText: React.FC<IInputProps & IReactHookFormProps>;
export declare const InputEmail: React.FC<IInputProps & IReactHookFormProps>;
export declare const InputURL: React.FC<IInputProps & IReactHookFormProps>;
export declare const InputNumber: React.FC<IInputProps & IReactHookFormProps>;
export declare const InputFloat: React.FC<IInputProps & IReactHookFormProps>;
interface IInputFileProps {
accept?: string;
}
export declare const InputFile: React.FC<IInputFileProps & IInputProps & IReactHookFormProps>;
export {};