daily-toolset
Version:
A lightweight, versatile collection of TypeScript utility functions for everyday development needs. Simplify and streamline your Node.js, React, and Next.js projects with a powerful suite of well-organized helpers for strings, arrays, dates, objects, and
14 lines (13 loc) • 601 B
TypeScript
import { DateInput } from "./FormDateInput";
import { FormInputProps } from "../../input.type";
export declare function FormInput(props: FormInputProps): import("react/jsx-runtime").JSX.Element;
export declare namespace FormInput {
var Password: ({ minLength, showRequirements, ...props }: PasswordProps) => import("react/jsx-runtime").JSX.Element;
var Search: ({ placeholder, ...props }: FormInputProps) => import("react/jsx-runtime").JSX.Element;
var Date: typeof DateInput;
}
type PasswordProps = FormInputProps & {
minLength?: number;
showRequirements?: boolean;
};
export {};